Ejemplo n.º 1
0
 public void RegisterNew(IAggregateRoot entity, IUnitOfWorkRepository unitOfWorkRepository)
 {
     SessionFactory.GetCurrentSession().Save(entity);
 }
Ejemplo n.º 2
0
 public void RegisterRemoved(IAggregateRoot entity, IUnitOfWorkRepository unitOfWorkRepository)
 {
     SessionFactory.GetCurrentSession().Delete(entity);
 }
Ejemplo n.º 3
0
 public ISession GetSession()
 {
     return(SessionFactory.OpenSession());
 }