public AdminController(AdminService adminService, AppService appService,
                        CustomerAccountService customerAccountService, DpdService dpdService, SubiektAPIService subiektAPIService)
 {
     _adminService           = adminService;
     _appService             = appService;
     _customerAccountService = customerAccountService;
     _dpdService             = dpdService;
     _subiektAPIService      = subiektAPIService;
 }
Esempio n. 2
0
 public CustomerAccountController(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     MyContex myContex,
     AppService appService,
     CartService cartService,
     CustomerAccountService customerAccountService,
     DpdService dpdService)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _myContex               = myContex;
     _appService             = appService;
     _cartService            = cartService;
     _customerAccountService = customerAccountService;
     _dpdService             = dpdService;
 }