Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Factories/AgendaFactory.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 | 74eb4577d447 |
children | 475be11edf56 |
comparison
equal
deleted
inserted
replaced
23:a85674a7aa7a | 24:41b283d27e3e |
---|---|
9 private static ISeguridad _seguridad; | 9 private static ISeguridad _seguridad; |
10 | 10 |
11 public static Agenda GetAgenda() | 11 public static Agenda GetAgenda() |
12 { | 12 { |
13 if (_agenda==null) | 13 if (_agenda==null) |
14 _agenda = new Agenda(null, null, _seguridad, new EventoRepository()); | 14 _agenda = new Agenda(null, null, _seguridad, new EventoRepository(), new PonenteRepository()); |
15 | 15 |
16 return _agenda; | 16 return _agenda; |
17 } | 17 } |
18 | 18 |
19 public static void SetIdentityProvider(ISeguridad seguridad) | 19 public static void SetIdentityProvider(ISeguridad seguridad) |