Пример #1
0
 public CreateModel(IMediator mediator,
                    IProductCategoryQuery productCategoryQuery,
                    IStoreQuery storeQuery,
                    IBrandQuery brandQuery)
 {
     _mediator             = mediator;
     _productCategoryQuery = productCategoryQuery;
     _storeQuery           = storeQuery;
     _brandQuery           = brandQuery;
 }
 public MenuViewComponent(IProductCategoryQuery productCategoryQuery, IArticleCategoryQuery articleCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
     _articleCategoryQuery = articleCategoryQuery;
 }
Пример #3
0
 public ProductCategoryViewComponent(IProductCategoryQuery productCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
 }
Пример #4
0
 public ProductCategoryModel(IProductCategoryQuery productCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
 }
Пример #5
0
 public MostSellProductViewComponent(IProductCategoryQuery productCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
 }
 public ProductCategoryMiddleBannerViewComponent(IProductCategoryQuery productCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
 }
Пример #7
0
 public BestChoiceProductViewComponent(IProductCategoryQuery productCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
 }
Пример #8
0
 public UpdateModel(IMediator mediator,
                    IProductCategoryQuery productCategoryQuery)
 {
     _mediator             = mediator;
     _productCategoryQuery = productCategoryQuery;
 }
 public ProductCategoryWithProductsCountViewComponent(IProductCategoryQuery productCategoryQuery)
 {
     _productCategoryQuery = productCategoryQuery;
 }