Exemplo n.º 1
0
 public IEnumerable <T> Execute()
 {
     return(Execute(UnitOfWorkBase.CurrentScope()));
 }
Exemplo n.º 2
0
 public IQueryable <T> Query()
 {
     return(Query(UnitOfWorkBase.CurrentScope()));
 }
Exemplo n.º 3
0
 public void Update(T entity)
 {
     Update(entity, UnitOfWorkBase.CurrentScope());
 }
Exemplo n.º 4
0
 public void Delete(T entity)
 {
     Delete(entity, UnitOfWorkBase.CurrentScope());
 }
Exemplo n.º 5
0
 public void Save(T entity)
 {
     Save(entity, UnitOfWorkBase.CurrentScope());
 }