Ejemplo n.º 1
0
 public EmployeeRepository(AppDataContextBase context) : base(context)
 {
 }
Ejemplo n.º 2
0
 public RepositoryBase(AppDataContextBase context)
 {
     Context = context;
 }
Ejemplo n.º 3
0
 public LogicBase(AppDataContextBase context)
 {
     ApplicationContext = context;
 }
Ejemplo n.º 4
0
 public EmployeeEvaluationRepository(AppDataContextBase context) : base(context)
 {
 }
Ejemplo n.º 5
0
 public EmployeeManagement(AppDataContextBase context) : base(context)
 {
 }
Ejemplo n.º 6
0
 public UnitOfWork(AppDataContextBase context)
 {
     _context            = context;
     Employees           = new EmployeeRepository(_context);
     EmployeeEvaluations = new EmployeeEvaluationRepository(_context);
 }