Ejemplo n.º 1
0
 public T Agregar(T entidad)
 {
     entidad.NoEsNull(nameof(entidad));
     GestorEventos.LanzarEvento(new Eventos.AntesGrabarEntidad <T>(entidad));
     base.Add(entidad);
     return(entidad);
 }
Ejemplo n.º 2
0
 public void Agregar(T entidad)
 {
     entidad.NoEsNull(nameof(entidad));
     GestorEventos.LanzarEvento(new Eventos.AntesGrabarEntidad <T>(entidad));
     _session.Save(entidad);
 }