Ejemplo n.º 1
0
 public AccountController(UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IUserAdressService userAdressService, IOrderService orderService, IProductService productService)
 {
     this.userManager       = userManager;
     this.signInManager     = signInManager;
     this.userAdressService = userAdressService;
     this.orderService      = orderService;
     this.productService    = productService;
 }
Ejemplo n.º 2
0
 public CartController(IProductService productService, IOrderService orderService, SignInManager <AppUser> signInManager, UserManager <AppUser> userManager, IUserAdressService userAdressService, IShipperService shipperService)
 {
     this.productService    = productService;
     this.orderService      = orderService;
     this.signInManager     = signInManager;
     this.userManager       = userManager;
     this.userAdressService = userAdressService;
     this.shipperService    = shipperService;
 }
Ejemplo n.º 3
0
 public OrderController(IOrderService orderService, IUserAdressService userAdressService, IProductService productService)
 {
     this.orderService      = orderService;
     this.userAdressService = userAdressService;
     this.productService    = productService;
 }