public CulturalExchangeValueHigherThanCourseValue( ICulturalExchangeRepository culturalExchangeRepository, ICollegeTimeRepository collegeTimeRepository) { _culturalExchangeRepository = culturalExchangeRepository; _collegeTimeRepository = collegeTimeRepository; }
public AccomodationService(IAccomodationRepository accomodationRepository, IStudentRepository studentRepository, ICollegeRepository collegeRepository, ICollegeTimeRepository collegeTimeRepository) { _accomodationRepository = accomodationRepository; _studentRepository = studentRepository; _collegeRepository = collegeRepository; _collegeTimeRepository = collegeTimeRepository; }
public CulturalExchangeService(ICulturalExchangeRepository culturalExchangeRepository, ICollegeRepository collegeRepository, ICollegeTimeRepository collegeTimeRepository, IAccomodationRepository accomodationRepository, IStudentRepository studentRepository, ICulturalExchangeFileUploadRepository culturalExchangeFileUploadRepository, IReceivePaymentCulturalExchangeRepository receivePaymentCulturalExchangeRepository) { _culturalExchangeRepository = culturalExchangeRepository; _collegeRepository = collegeRepository; _collegeTimeRepository = collegeTimeRepository; _accomodationRepository = accomodationRepository; _studentRepository = studentRepository; _culturalExchangeFileUploadRepository = culturalExchangeFileUploadRepository; _receivePaymentCulturalExchangeRepository = receivePaymentCulturalExchangeRepository; }
public CollegeTimeService(ICollegeTimeRepository collegeTimeRepository, ICollegeRepository collegeRepository) { _collegeTimeRepository = collegeTimeRepository; _collegeRepository = collegeRepository; }