Exemple #1
0
 public SqlEmployeeRepository(AssignmentServiceDbContext employeeContext)
 {
     _employeeContext = employeeContext;
 }
Exemple #2
0
 public SqlTaskRepository(AssignmentServiceDbContext taskContext)
 {
     _taskContext = taskContext;
 }
 public SqlAssignmentRepository(AssignmentServiceDbContext assignmentContext)
 {
     _assignmentContext = assignmentContext;
 }