public InternationalManagerController(IRequestService requestService
                                       , IStudentDocService studentDocService
                                       , ICollegeService collegeService
                                       , IFieldForForeignService fieldForForeignService
                                       , ICountryService countryService
                                       , ICandidateFieldService condidateService
                                       , IStudentService studentService
                                       , IPersonService personService
                                       , IRelatedPersonService relatedPersonService
                                       , IAddressService addressService
                                       , IEducationDegreeService educationDegreeService
                                       , ICitizenShipService citizenShipService
                                       , INewStudentService newStudentService
                                       , ISidaFieldService sidaFieldService
                                       , IUserLogService userLogService)
 {
     _requestService         = requestService;
     _studentDocService      = studentDocService;
     _collegeService         = collegeService;
     _fieldForForeignService = fieldForForeignService;
     _countryService         = countryService;
     _condidateService       = condidateService;
     _studentService         = studentService;
     _personService          = personService;
     _relatedPersonService   = relatedPersonService;
     _addressService         = addressService;
     _educationDegreeService = educationDegreeService;
     _citizenShipService     = citizenShipService;
     _newStudentService      = newStudentService;
     _sidaFieldService       = sidaFieldService;
     _userLogService         = userLogService;
 }
示例#2
0
 public PersonService(IMapper mapper, IPersonRepository personRepository, IRelatedPersonService relatedPersonService, IUnitOfWork unitOfWork, IImageService imageService, ICityService cityService, IPhoneNumberRepository phoneNumberRepository)
     : base(unitOfWork, mapper, personRepository)
 {
     _imageService          = imageService;
     _cityService           = cityService;
     _phoneNumberRepository = phoneNumberRepository;
     _relatedPersonService  = relatedPersonService;
 }
示例#3
0
 public PersonController(IPersonService personService, IRelatedPersonService relatedPersonRepository) : base()
 {
     _relatedPersonRepository = relatedPersonRepository;
     _personService           = personService;
 }