Exemple #1
0
 public StudentController(IStudentService studentService, ICityService cityService, IDepartmentService departmentService, IEducationTypeService educationTypeService, IFacultyService facultyService, IGraduateTypeService graduateTypeService, IUniversityService universityService)
 {
     _studentService       = studentService;
     _cityService          = cityService;
     _departmentService    = departmentService;
     _educationTypeService = educationTypeService;
     _facultyService       = facultyService;
     _graduateTypeService  = graduateTypeService;
     _universityService    = universityService;
 }
Exemple #2
0
 public EducationTypeController(IEducationTypeService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }