public UnitOfWork(EmsDevEntities context) { this.context = context; }
public GenericRepository(EmsDevEntities context) { this._context = context; this._dbSet = context.Set <TEntity>(); }
public UnitOfWork() { this.context = new EmsDevEntities(); }