public AccomodationController(IApplicationUserAppService applicationUserAppService,
                               IAccomodationAppService accomodationAppService,
                               ICulturalExchangeAppService culturalExchangeAppService)
 {
     //_userManager = userManager;
     _applicationUserAppService  = applicationUserAppService;
     _accomodationAppService     = accomodationAppService;
     _culturalExchangeAppService = culturalExchangeAppService;
 }
Esempio n. 2
0
 public FileUploadController(
     IOptions <AppSettings> appSetttings,
     ICulturalExchangeFileUploadAppService culturalExchangeFileUploadAppService,
     IFileUploadAppService fileUploadAppService,
     ICulturalExchangeAppService culturalExchangeAppService)
 {
     _appSetttings         = appSetttings;
     _fileUploadAppService = fileUploadAppService;
     _culturalExchangeFileUploadAppService = culturalExchangeFileUploadAppService;
     _culturalExchangeAppService           = culturalExchangeAppService;
 }
 public PaymentCulturalExchangeController(
     IOptions <AppSettings> appSetttings,
     IFileUploadAppService fileUploadAppService,
     ICulturalExchangeAppService culturalExchangeAppService,
     IApplicationUserAppService applicationUserAppService,
     IPaymentCulturalExchangeAppService paymentCulturalExchangeAppService)
 {
     _appSetttings                      = appSetttings;
     _fileUploadAppService              = fileUploadAppService;
     _culturalExchangeAppService        = culturalExchangeAppService;
     _applicationUserAppService         = applicationUserAppService;
     _paymentCulturalExchangeAppService = paymentCulturalExchangeAppService;
 }
 public ReceivePaymentCulturalExchangeController(
     IOptions <AppSettings> appSetings,
     IFileUploadAppService fileUploadAppService,
     IApplicationUserAppService applicationUserAppService,
     IReceivePaymentCulturalExchangeAppService receivePaymentCulturalExchangeAppService,
     ICulturalExchangeAppService culturalExchangeAppService,
     ICollegeTimeAppService collegeTimeAppService,
     ICollegeAppService collegeAppService)
 {
     _appSetttings              = appSetings;
     _fileUploadAppService      = fileUploadAppService;
     _applicationUserAppService = applicationUserAppService;
     _collegeTimeAppService     = collegeTimeAppService;
     _collegeAppService         = collegeAppService;
     _receivePaymentCulturalExchangeAppService = receivePaymentCulturalExchangeAppService;
     _culturalExchangeAppService = culturalExchangeAppService;
 }
        //private readonly UserManager<ApplicationUserViewModel> _userManager;

        public CulturalExchangeController(/*UserManager<ApplicationUserViewModel> userManager,*/
            IApplicationUserAppService applicationUserAppService,
            ICulturalExchangeAppService culturalExchangeAppService,
            IStudentAppService studentAppService, ICollegeAppService collegeAppService,
            IEnvironmentAppService environmentAppService, IAccomodationAppService accomodationAppService,
            ICollegeTimeAppService collegeTimeAppService, IReceivePaymentCulturalExchangeAppService receivePaymentAppService
            )
        {
            _applicationUserAppService  = applicationUserAppService;
            _culturalExchangeAppService = culturalExchangeAppService;
            _studentAppService          = studentAppService;
            _collegeAppService          = collegeAppService;
            _collegeTimeAppService      = collegeTimeAppService;
            //_userManager = userManager;
            _environmentAppService    = environmentAppService;
            _accomodationAppService   = accomodationAppService;
            _receivePaymentAppService = receivePaymentAppService;
        }