Ejemplo n.º 1
0
 public CustomerController(ICustomerService customerService,
                           UserManager <AppUser> userManager,
                           IActionResultMapper <CustomerController> actionResultMapper)
 {
     _customerService    = customerService;
     _userManager        = userManager;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 2
0
 public AdministrationController(RoleManager <IdentityRole> roleManager,
                                 UserManager <AppUser> userManager,
                                 IActionResultMapper <AdministrationController> actionResultMapper)
 {
     _roleManager        = roleManager;
     _userManager        = userManager;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 3
0
 public DistrictsController(IDistrictsService districtsService,
                            ICitiesService citiesService,
                            IActionResultMapper <DistrictsController> actionResultMapper)
 {
     _districtsService   = districtsService;
     _citiesService      = citiesService;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 4
0
 public CitiesController(ICountriesService countriesService,
                         ICitiesService citiesService,
                         IActionResultMapper <CitiesController> actionResultMapper)
 {
     ;
     _countriesService   = countriesService;
     _citiesService      = citiesService;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 5
0
 public BranchController(IBranchService branchService,
                         ICitiesService citiesService,
                         ICustomerService customerService,
                         UserManager <AppUser> userManager,
                         IActionResultMapper <BranchController> actionResultMapper)
 {
     _branchService      = branchService;
     _citiesService      = citiesService;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 6
0
 public BankAccountController(IBankAccountService bankAccountService,
                              ICustomerService customerService,
                              UserManager <AppUser> userManager,
                              IActionResultMapper <BankAccountController> actionResultMapper)
 {
     _bankAccountService = bankAccountService;
     _customerService    = customerService;
     _userManager        = userManager;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 7
0
 public DebitCardsController(IDebitCardsService debitCardsService,
                             ICustomerService customerService,
                             UserManager <AppUser> userManager,
                             IActionResultMapper <DebitCardsController> actionResultMapper)
 {
     _debitCardsService  = debitCardsService;
     _customerService    = customerService;
     _userManager        = userManager;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 8
0
 public CreditCardsController(ICreditCardsService creditCardsService,
                              ICustomerService customerService,
                              UserManager <AppUser> userManager,
                              IActionResultMapper <CreditCardsController> actionResultMapper)
 {
     _creditCardsService = creditCardsService;
     _customerService    = customerService;
     _userManager        = userManager;
     _actionResultMapper = actionResultMapper;
 }
Ejemplo n.º 9
0
 public AuthController(UserManager <AppUser> userManager,
                       SignInManager <AppUser> signInManager,
                       IAuthService authService,
                       IMailService mailService,
                       IActionResultMapper <AuthController> actionResultMapper)
 {
     _signInManager = signInManager;
     _userManager   = userManager;
     _authService   = authService;
     _mailService   = mailService;
 }
Ejemplo n.º 10
0
 public FastTransactionsController(IFastTransactionsService fastTransactionsService,
                                   IBankAccountService bankAccountService,
                                   ICustomerService customerService,
                                   UserManager <AppUser> userManager,
                                   IActionResultMapper <FastTransactionsController> actionResultMapper)
 {
     _fastTransactionsService = fastTransactionsService;
     _bankAccountService      = bankAccountService;
     _customerService         = customerService;
     _userManager             = userManager;
     _actionResultMapper      = actionResultMapper;
 }
Ejemplo n.º 11
0
 public CashTransactionsController(ICashTransactionsService cashTransactionsService,
                                   ICustomerService customerService,
                                   ICreditCardsService creditCardsService,
                                   IDebitCardsService debitCardsService,
                                   UserManager <AppUser> userManager,
                                   IActionResultMapper <CashTransactionsController> actionResultMapper)
 {
     _cashTransactionsService = cashTransactionsService;
     _customerService         = customerService;
     _creditCardsService      = creditCardsService;
     _debitCardsService       = debitCardsService;
     _userManager             = userManager;
     _actionResultMapper      = actionResultMapper;
 }
Ejemplo n.º 12
0
 public AddressController(IAddressService addressService,
                          IActionResultMapper <AddressController> actionResultMapper)
 {
     _addressService     = addressService;
     _actionResultMapper = actionResultMapper;
 }