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