2
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using AltNetHispano.Agendas.Domain;
|
|
4 using AltNetHispano.Agendas.Domain.Repositories;
|
|
5
|
|
6 namespace Agendas.Repositories.Memory
|
|
7 {
|
|
8 public class AgendaRepository : IAgendaRepository
|
|
9 {
|
|
10 protected static readonly IDictionary<Guid, Agenda> Agendas = new Dictionary<Guid, Agenda>();
|
|
11
|
3
|
12 #region IAgendaRepository Members
|
|
13
|
2
|
14 public void Save(Agenda agenda)
|
|
15 {
|
|
16 if (Guid.Empty.Equals(agenda.Id))
|
|
17 {
|
|
18 agenda.Id = Guid.NewGuid();
|
|
19 Agendas.Add(agenda.Id, agenda);
|
|
20 }
|
|
21 }
|
|
22
|
|
23 public void Update(Agenda agenda)
|
|
24 {
|
|
25 //nada que hacer en este método para este repositorio
|
|
26 }
|
|
27
|
|
28 public void Delete(Agenda agenda)
|
|
29 {
|
|
30 Agendas.Remove(agenda.Id);
|
|
31 }
|
|
32
|
|
33 public Agenda Get(Guid agendaId)
|
|
34 {
|
|
35 Agenda agenda;
|
|
36 return Agendas.TryGetValue(agendaId, out agenda) ? agenda : null;
|
3
|
37 }
|
2
|
38
|
3
|
39 #endregion
|
2
|
40 }
|
|
41 } |