Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 2:c03560ae4762
Test de Crud para la agenda
author | nelopauselli |
---|---|
date | Sat, 22 Jan 2011 20:21:31 -0300 |
parents | 6bb4ab4c0611 |
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); } }