public AccomodationController(IApplicationUserAppService applicationUserAppService,
                               IAccomodationAppService accomodationAppService,
                               ICulturalExchangeAppService culturalExchangeAppService)
 {
     //_userManager = userManager;
     _applicationUserAppService  = applicationUserAppService;
     _accomodationAppService     = accomodationAppService;
     _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;
        }