Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Repositories.Memory/CafeRepository.cs @ 6:2912c1dd0e6b
Se verificó mediante un test que las propuestas y las publicaciones se estaban mezclando. Se corrigió el bug.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 08 Feb 2011 07:47:47 -0300 |
parents | 49b572535156 |
children |
rev | line source |
---|---|
2 | 1 using System; |
2 using AltNetHispano.Agendas.Domain; | |
3 using AltNetHispano.Agendas.Domain.Repositories; | |
4 | |
5 namespace Agendas.Repositories.Memory | |
6 { | |
3 | 7 public class CafeRepository : EventoRepository, ICafeRepository |
2 | 8 { |
3 | 9 #region ICafeRepository Members |
10 | |
2 | 11 public Cafe Get(Guid vanId) |
12 { | |
13 Evento evento; | |
4 | 14 return Objects.TryGetValue(vanId, out evento) ? evento as Cafe : null; |
2 | 15 } |
3 | 16 |
17 #endregion | |
2 | 18 } |
19 } |