public StudentController(IStudentAppService studentAppService, IEnvironmentAppService environmentAppService,
                          IApplicationUserAppService applicationUserAppService)
 {
     _studentAppService         = studentAppService;
     _environmentAppService     = environmentAppService;
     _applicationUserAppService = applicationUserAppService;
 }
Exemplo n.º 2
0
 public CollegeController(IApplicationUserAppService applicationUserAppService,
                          ICollegeAppService collegeAppService,
                          ICollegeTimeAppService collegeTimeAppService)
 {
     _applicationUserAppService = applicationUserAppService;
     _collegeAppService         = collegeAppService;
     _collegeTimeAppService     = collegeTimeAppService;
     //_userManager = userManager;
 }
 public AccomodationController(IApplicationUserAppService applicationUserAppService,
                               IAccomodationAppService accomodationAppService,
                               ICulturalExchangeAppService culturalExchangeAppService)
 {
     //_userManager = userManager;
     _applicationUserAppService  = applicationUserAppService;
     _accomodationAppService     = accomodationAppService;
     _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;
        }
Exemplo n.º 7
0
 public LogoutModel(IApplicationUserAppService applicationUserAppService, ILogger <LogoutModel> logger, SignInManager <Domain.Entities.ApplicationUser> signInManager)
 {
     _signInManager = signInManager;
     _logger        = logger;
 }
 public HomeController(IApplicationUserAppService applicationUserAppService)
 {
     _applicationUserAppService = applicationUserAppService;
 }
Exemplo n.º 9
0
 public RoleController(IApplicationUserAppService applicationUserAppService, RoleManager <IdentityRole> roleManager, UserManager <Domain.Entities.ApplicationUser> userManager)
 {
     _applicationUserAppService = applicationUserAppService;
     _roleManager = roleManager;
     _userManager = userManager;
 }