comparison Agendas/trunk/src/Agendas.Repositories.Memory/EventoRepository.cs @ 24:41b283d27e3e

Ponentes como entidad Agenda no es una entidad persistente (por ahora)
author nelo@MTEySS.neluz.int
date Tue, 15 Mar 2011 07:49:53 -0300
parents 08b9e96132a5
children 016b9b9b8d3a
comparison
equal deleted inserted replaced
23:a85674a7aa7a 24:41b283d27e3e
40 40
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
46 public static void Clear()
47 {
48 Objects.Clear();
49 }
45 } 50 }
46 } 51 }