Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 4:49b572535156
proponer van
publicar van propuesta
comportamiento ante excepcion en publicador
author | nelopauselli |
---|---|
date | Tue, 08 Feb 2011 00:08:49 -0300 |
parents | c03560ae4762 |
children | 05996fa19e04 |
line wrap: on
line source
using System; namespace AltNetHispano.Agendas.Domain.Repositories { public interface IEventoRepository { void Save(Evento evento); void Delete(Evento evento); void Update(Evento evento); } public interface IVanRepository : IEventoRepository { Van Get(Guid vanId); } public interface ICafeRepository : IEventoRepository { Cafe Get(Guid vanId); } public interface IAgendaRepository { void Save(Agenda agenda); void Delete(Agenda agenda); void Update(Agenda agenda); Agenda Get(Guid agendaId); } }