public EditCommentHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public ListCategoriesHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Esempio n. 3
0
 public EditOrderStateHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
 public ListProductsHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public CreateOrderHandler(OnlineComputerShopContext context, IIdentityService identityService)
 {
     this.context         = context;
     this.identityService = identityService;
 }
Esempio n. 6
0
 public RemoveCategoryHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
Esempio n. 7
0
 public GetSocketHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public ListOrdersHandler(OnlineComputerShopContext context, IMapper mapper, IIdentityService identityService)
 {
     this.context         = context;
     this.mapper          = mapper;
     this.identityService = identityService;
 }
Esempio n. 9
0
 public EditSocketHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
 public ComputerAssemblerProductListHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public RemoveBasketItemHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
Esempio n. 12
0
 public RemoveOrderHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
Esempio n. 13
0
 public RemoveProductHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
 public EditBasketItemHandler(OnlineComputerShopContext context, IMapper mapper, IIdentityService identityService)
 {
     this.context         = context;
     this.mapper          = mapper;
     this.identityService = identityService;
 }
Esempio n. 15
0
 public RegisterModel(UserManager <User> userManager, OnlineComputerShopContext context)
 {
     this.userManager = userManager;
     this.context     = context;
 }
Esempio n. 16
0
 public RemoveCommentHandler(OnlineComputerShopContext context, IIdentityService identityService)
 {
     this.context         = context;
     this.identityService = identityService;
 }
 public CreateCategoryHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }