public EditCommentHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public ListCategoriesHandler(OnlineComputerShopContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Пример #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;
 }
Пример #6
0
 public RemoveCategoryHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
Пример #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;
 }
Пример #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;
 }
Пример #12
0
 public RemoveOrderHandler(OnlineComputerShopContext context)
 {
     this.context = context;
 }
Пример #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;
 }
Пример #15
0
 public RegisterModel(UserManager <User> userManager, OnlineComputerShopContext context)
 {
     this.userManager = userManager;
     this.context     = context;
 }
Пример #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;
 }