Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Repositories.Memory/EventoRepository.cs @ 29:016b9b9b8d3a
Cuando se publica una van con el mismo titulo que una propuesta, se utiliza esta
Ășltima promoviendola a evento publicado.
author | nelo@MTEySS.neluz.int |
---|---|
date | Wed, 16 Mar 2011 08:25:02 -0300 |
parents | 41b283d27e3e |
children | 475be11edf56 |
comparison
equal
deleted
inserted
replaced
28:18bb9fe40517 | 29:016b9b9b8d3a |
---|---|
41 public IList<Evento> GetEventosConFecha() | 41 public IList<Evento> GetEventosConFecha() |
42 { | 42 { |
43 return Objects.Values.Where(e => e.Fecha != null).ToList(); | 43 return Objects.Values.Where(e => e.Fecha != null).ToList(); |
44 } | 44 } |
45 | 45 |
46 public Evento GetPropuestaByTitulo(string titulo) | |
47 { | |
48 return Objects.Values.SingleOrDefault(e => e.Fecha == null && e.Titulo == titulo); | |
49 } | |
50 | |
46 public static void Clear() | 51 public static void Clear() |
47 { | 52 { |
48 Objects.Clear(); | 53 Objects.Clear(); |
49 } | 54 } |
50 } | 55 } |