Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 1:6bb4ab4c0611
Tests de Crud para repositorio de Vans
author | nelopauselli |
---|---|
date | Sat, 22 Jan 2011 19:50:32 -0300 |
parents | 3f7dbb633b71 |
children | c03560ae4762 |
comparison
equal
deleted
inserted
replaced
0:3f7dbb633b71 | 1:6bb4ab4c0611 |
---|---|
1 namespace AltNetHispano.Agendas.Domain.Repositories | 1 using System; |
2 | |
3 namespace AltNetHispano.Agendas.Domain.Repositories | |
2 { | 4 { |
3 public interface IEventoRepository | 5 public interface IEventoRepository |
4 { | 6 { |
5 void Save(Evento evento); | 7 void Save(Evento evento); |
8 void Delete(Evento evento); | |
9 void Update(Evento evento); | |
10 } | |
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); | |
6 } | 20 } |
7 } | 21 } |