public ShoppingCartsController(IShoppingCartsService cartsService,
                                IShopProductsService shopProductsService,
                                IDeletableEntityRepository <FamilyKitchenUser> userRepository,
                                IMapper mapper)
 {
     this.cartsService        = cartsService;
     this.shopProductsService = shopProductsService;
     this.userRepository      = userRepository;
     this.mapper = mapper;
 }
Example #2
0
 public ConfirmRecipeController(IRecipesService recipesService, IShopProductsService shopProductsService, IFavoriteProductService favoriteProductService)
 {
     this.recipesService         = recipesService;
     this.shopProductsService    = shopProductsService;
     this.favoriteProductService = favoriteProductService;
 }
Example #3
0
 public SearchController(IShopProductsService productService, IElasticClient elasticClient)
 {
     this.productService = productService;
     this.client         = elasticClient;
 }
Example #4
0
 public CartHub(IShopProductsService shopProductsService, IFamiliesService familiesService)
 {
     this.shopProductsService = shopProductsService;
     this.familiesService     = familiesService;
 }
 public HomeController(ICategoriesService categoriesService, IShopProductsService shopProductsService, Cloudinary cloudinary)
 {
     this.cloudinary          = cloudinary;
     this.categoriesService   = categoriesService;
     this.shopProductsService = shopProductsService;
 }
 public ShopProductsController(IShopProductsService productsService)
 {
     this.productsService = productsService;
 }