public CollegeController(IRepository <College> _repository, IMapper _mapper, ICollegeInterface collegeService)
 {
     Repository     = _repository;
     Mapper         = _mapper;
     CollegeService = collegeService;
 }
Esempio n. 2
0
 public DepartmentController(IRepository <Department> _repository, IMapper _mapper, ICollegeInterface _collegeService)
 {
     Repository     = _repository;
     Mapper         = _mapper;
     CollegeService = _collegeService;
 }