public EmployeeRepository(AppDataContextBase context) : base(context) { }
public RepositoryBase(AppDataContextBase context) { Context = context; }
public LogicBase(AppDataContextBase context) { ApplicationContext = context; }
public EmployeeEvaluationRepository(AppDataContextBase context) : base(context) { }
public EmployeeManagement(AppDataContextBase context) : base(context) { }
public UnitOfWork(AppDataContextBase context) { _context = context; Employees = new EmployeeRepository(_context); EmployeeEvaluations = new EmployeeEvaluationRepository(_context); }