Esempio n. 1
0
 public UnitOfWork(EmployeeQualificationContext dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 2
0
 public EmployeeQualificationRepository(EmployeeQualificationContext context) : base(context)
 {
 }
Esempio n. 3
0
 protected RepositoryBase(EmployeeQualificationContext EmployeeQualificationContext)
 {
     _EmployeeQualificationContext = EmployeeQualificationContext;
     dbSet = _EmployeeQualificationContext.Set <T>();
 }