コード例 #1
0
 public SqlEmployeeRepository(AssignmentServiceDbContext employeeContext)
 {
     _employeeContext = employeeContext;
 }
コード例 #2
0
 public SqlTaskRepository(AssignmentServiceDbContext taskContext)
 {
     _taskContext = taskContext;
 }
コード例 #3
0
 public SqlAssignmentRepository(AssignmentServiceDbContext assignmentContext)
 {
     _assignmentContext = assignmentContext;
 }