Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Memory/EventoRepository.cs @ 56:65bbcdd5d357
Pasando la responsabilidad de generar el Id al repositorio
author | nelopauselli |
---|---|
date | Mon, 16 May 2011 20:15:05 -0300 |
parents | 3c5657d99727 |
children | c40b97bbed01 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; namespace AltNetHispano.Agendas.Repositories.Memory { public class EventoRepository : RepositoryBase<Evento>, IEventoRepository { public void Update(Evento evento) { //nada que hacer en este método para este repositorio } public void Delete(Evento evento) { Objects.Remove(evento.Id); } public Evento Get(Guid vanId) { Evento evento; return Objects.TryGetValue(vanId, out evento) ? evento : null; } public IList<Evento> GetEventosSinFecha() { return Objects.Values.Where(e => e.Fecha == null).ToList(); } public IList<Evento> GetEventosConFecha() { return Objects.Values.Where(e => e.Fecha != null).ToList(); } public Evento GetPropuestaByTitulo(string titulo) { return Objects.Values.SingleOrDefault(e => e.Fecha == null && e.Titulo == titulo); } public static void Clear() { Objects.Clear(); } } }