public UserService(IConfiguration configuration,
                    EmployeePerformaceDbContext context,
                    UserIdentityDbContext userContext)
 {
     _configuration = configuration;
     _context       = context;
     _userContext   = userContext;
 }
 public ReportRepository(EmployeePerformaceDbContext context,
                         IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
 public RatingRepository(EmployeePerformaceDbContext context)
 {
     _context = context;
 }
 public EmployeeIterationRepository(EmployeePerformaceDbContext context)
 {
     _context = context;
 }
Exemple #5
0
 public GoalRepository(EmployeePerformaceDbContext context)
 {
     _context = context;
 }
 public DepartmentRepository(EmployeePerformaceDbContext context,
                             UserIdentityDbContext userContext)
 {
     _context     = context;
     _userContext = userContext;
 }