Example #1
0
 public AssignmentServices(IAssignmentRepo aR)
 {
     aRepo = aR;
 }
Example #2
0
 public AssignmentService(IAssignmentRepo assignmentRepo)
 {
     _assignmentRepo = assignmentRepo;
 }
 public AssignmentController(IAssignmentRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
Example #4
0
 public AssignmentController(IAssignmentRepo assignmentRepository)
 {
     _assignmentRepo = assignmentRepository;
 }