コード例 #1
0
 public HomeController(ISliderCore slider, ICatalogCore catalog, IProductCore product, IStoreCore store)
 {
     _slider  = slider;
     _catalog = catalog;
     _product = product;
     _store   = store;
 }
コード例 #2
0
 public SellerController(IVendorCore vendor, ICatalogCore catalog, IRegionCore region, IAreaCore area)
 {
     _vendor  = vendor;
     _catalog = catalog;
     _region  = region;
     _area    = area;
 }
コード例 #3
0
        public CategoryController(IBrandCore brand, IAttributeCore attribute, ISpecificationCore specification, ICloudStorage cloudStorage, ICatalogCore catalog, IMapper mapper, IUnitOfWork db)
        {
            _brand         = brand;
            _attribute     = attribute;
            _specification = specification;

            _catalog      = catalog;
            _cloudStorage = cloudStorage;
            _seo          = new SeoCoreCatalog(mapper, db);
        }
コード例 #4
0
 public ProductController(IProductCore product, IOrderCore order, ICustomerCore customer, IRegionCore region, IAreaCore area, ICatalogCore catalog, IGeneralSettingCore setting, IOrderCartCore orderCartCore)
 {
     _product       = product;
     _order         = order;
     _customer      = customer;
     _region        = region;
     _area          = area;
     _catalog       = catalog;
     _setting       = setting;
     _orderCartCore = orderCartCore;
 }
コード例 #5
0
 public SpecificationController(ISpecificationCore specification, ICatalogCore catalog)
 {
     _specification = specification;
     _catalog       = catalog;
 }
コード例 #6
0
 public AttributeController(ICatalogCore catalog, IAttributeCore attribute)
 {
     _catalog   = catalog;
     _attribute = attribute;
 }
コード例 #7
0
 public BrandController(ICloudStorage cloudStorage, ICatalogCore catalog, IBrandCore brand)
 {
     _catalog      = catalog;
     _brand        = brand;
     _cloudStorage = cloudStorage;
 }