Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 12:05996fa19e04
Unificamos Van y Cafe en Evento
Agenda.Publicar con los valores como parĂ¡metros independientes
author | nelo@MTEySS.neluz.int |
---|---|
date | Sun, 13 Mar 2011 19:50:17 -0300 |
parents | c03560ae4762 |
children | 08b9e96132a5 |
comparison
equal
deleted
inserted
replaced
11:9d6b28a696d1 | 12:05996fa19e04 |
---|---|
5 public interface IEventoRepository | 5 public interface IEventoRepository |
6 { | 6 { |
7 void Save(Evento evento); | 7 void Save(Evento evento); |
8 void Delete(Evento evento); | 8 void Delete(Evento evento); |
9 void Update(Evento evento); | 9 void Update(Evento evento); |
10 } | 10 Evento Get(Guid vanId); |
11 | 11 } |
12 public interface IVanRepository : IEventoRepository | |
13 { | |
14 Van Get(Guid vanId); | |
15 } | |
16 | |
17 public interface ICafeRepository : IEventoRepository | |
18 { | |
19 Cafe Get(Guid vanId); | |
20 } | |
21 | 12 |
22 public interface IAgendaRepository | 13 public interface IAgendaRepository |
23 { | 14 { |
24 void Save(Agenda agenda); | 15 void Save(Agenda agenda); |
25 void Delete(Agenda agenda); | 16 void Delete(Agenda agenda); |