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