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