public CustomerController(ICustomerService customerService, UserManager <AppUser> userManager, IActionResultMapper <CustomerController> actionResultMapper) { _customerService = customerService; _userManager = userManager; _actionResultMapper = actionResultMapper; }
public AdministrationController(RoleManager <IdentityRole> roleManager, UserManager <AppUser> userManager, IActionResultMapper <AdministrationController> actionResultMapper) { _roleManager = roleManager; _userManager = userManager; _actionResultMapper = actionResultMapper; }
public DistrictsController(IDistrictsService districtsService, ICitiesService citiesService, IActionResultMapper <DistrictsController> actionResultMapper) { _districtsService = districtsService; _citiesService = citiesService; _actionResultMapper = actionResultMapper; }
public CitiesController(ICountriesService countriesService, ICitiesService citiesService, IActionResultMapper <CitiesController> actionResultMapper) { ; _countriesService = countriesService; _citiesService = citiesService; _actionResultMapper = actionResultMapper; }
public BranchController(IBranchService branchService, ICitiesService citiesService, ICustomerService customerService, UserManager <AppUser> userManager, IActionResultMapper <BranchController> actionResultMapper) { _branchService = branchService; _citiesService = citiesService; _actionResultMapper = actionResultMapper; }
public BankAccountController(IBankAccountService bankAccountService, ICustomerService customerService, UserManager <AppUser> userManager, IActionResultMapper <BankAccountController> actionResultMapper) { _bankAccountService = bankAccountService; _customerService = customerService; _userManager = userManager; _actionResultMapper = actionResultMapper; }
public DebitCardsController(IDebitCardsService debitCardsService, ICustomerService customerService, UserManager <AppUser> userManager, IActionResultMapper <DebitCardsController> actionResultMapper) { _debitCardsService = debitCardsService; _customerService = customerService; _userManager = userManager; _actionResultMapper = actionResultMapper; }
public CreditCardsController(ICreditCardsService creditCardsService, ICustomerService customerService, UserManager <AppUser> userManager, IActionResultMapper <CreditCardsController> actionResultMapper) { _creditCardsService = creditCardsService; _customerService = customerService; _userManager = userManager; _actionResultMapper = actionResultMapper; }
public AuthController(UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IAuthService authService, IMailService mailService, IActionResultMapper <AuthController> actionResultMapper) { _signInManager = signInManager; _userManager = userManager; _authService = authService; _mailService = mailService; }
public FastTransactionsController(IFastTransactionsService fastTransactionsService, IBankAccountService bankAccountService, ICustomerService customerService, UserManager <AppUser> userManager, IActionResultMapper <FastTransactionsController> actionResultMapper) { _fastTransactionsService = fastTransactionsService; _bankAccountService = bankAccountService; _customerService = customerService; _userManager = userManager; _actionResultMapper = actionResultMapper; }
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; }
public AddressController(IAddressService addressService, IActionResultMapper <AddressController> actionResultMapper) { _addressService = addressService; _actionResultMapper = actionResultMapper; }