public EmployeeRepository(AppDataContextBase context) : base(context)
 {
 }
Exemple #2
0
 public RepositoryBase(AppDataContextBase context)
 {
     Context = context;
 }
Exemple #3
0
 public LogicBase(AppDataContextBase context)
 {
     ApplicationContext = context;
 }
Exemple #4
0
 public EmployeeEvaluationRepository(AppDataContextBase context) : base(context)
 {
 }
 public EmployeeManagement(AppDataContextBase context) : base(context)
 {
 }
Exemple #6
0
 public UnitOfWork(AppDataContextBase context)
 {
     _context            = context;
     Employees           = new EmployeeRepository(_context);
     EmployeeEvaluations = new EmployeeEvaluationRepository(_context);
 }