Mercurial > altnet-hispano
comparison 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 |
comparison
equal
deleted
inserted
replaced
1:6bb4ab4c0611 | 2:c03560ae4762 |
---|---|
16 | 16 |
17 public interface ICafeRepository : IEventoRepository | 17 public interface ICafeRepository : IEventoRepository |
18 { | 18 { |
19 Cafe Get(Guid vanId); | 19 Cafe Get(Guid vanId); |
20 } | 20 } |
21 | |
22 public interface IAgendaRepository | |
23 { | |
24 void Save(Agenda agenda); | |
25 void Delete(Agenda agenda); | |
26 void Update(Agenda agenda); | |
27 Agenda Get(Guid agendaId); | |
28 } | |
21 } | 29 } |