comparison Agendas/trunk/src/Agendas.Repositories.NHibernate/EventoRepository.cs @ 239:717fce60f200

Se eliminió un warning que aparecía por ocultar un método.
author juanjose.montesdeocaarbos
date Wed, 05 Oct 2011 07:31:35 -0300
parents 7d838e7d83b3
children 5cc1681d3789
comparison
equal deleted inserted replaced
234:cc71f96ac134 239:717fce60f200
15 public void Delete(Evento evento) 15 public void Delete(Evento evento)
16 { 16 {
17 Session.Delete(evento); 17 Session.Delete(evento);
18 } 18 }
19 19
20 public Evento Get(Guid vanId) 20 public new Evento Get(Guid vanId)
21 { 21 {
22 return Session.Get<Evento>(vanId); 22 return Session.Get<Evento>(vanId);
23 } 23 }
24 24
25 public IList<Evento> GetActivos() 25 public IList<Evento> GetActivos()