Exemplo n.º 1
0
 public UnitOfWork()
 {
     _eRPDemoEntities = new ERPDemoEntities();
 }
Exemplo n.º 2
0
 public UnitOfWork(ERPDemoEntities eRPDemoEntities)
 {
     this._eRPDemoEntities = eRPDemoEntities;
 }
Exemplo n.º 3
0
 public AccountRepogitory(ERPDemoEntities context)
 {
     this._context = context;
     _table        = _context.Set <TEntity>();
 }