Esempio n. 1
0
 public CreateModel(IStoreProductService storeProductService, IStoreService storeService,
                    IProductService productService)
 {
     _storeProductService = storeProductService;
     _storeService        = storeService;
     _productService      = productService;
 }
Esempio n. 2
0
 public StoreProductController(IEmployeeService employeeService, IStoreProductService storeProductService
                               , IProductService productService, IStoreService storeService)
     : base(employeeService)
 {
     _storeProductService = storeProductService;
     _productService      = productService;
     _employeeService     = employeeService;
     _storeService        = storeService;
 }
Esempio n. 3
0
 public ProductLogService(IProductLogRepository productLogRepository, IProductRepository productRepository, IUnitOfWork uow
                          , IEmployeeRepository employeeRepository, IStoreRepository storeRepository, IStoreProductRepository storeProductrepository, IStoreProductService storproductService)
     : this(productLogRepository, uow)
 {
     this._productRepository = productRepository;
     _employeeRepository     = employeeRepository;
     _storRepository         = storeRepository;
     _storeProductrepository = storeProductrepository;
     _storproductService     = storproductService;
 }
Esempio n. 4
0
 public DetailsModel(IStoreProductService storeProductService)
 {
     _storeProductService = storeProductService;
 }
Esempio n. 5
0
 public DeleteModel(IStoreProductService storeProductService)
 {
     _storeProductService = storeProductService;
 }
Esempio n. 6
0
 public StoreController(IStoreProductService itemService, IProductSectionCategoryService categoryService)
 {
     _itemService     = itemService ?? throw new ArgumentNullException(nameof(itemService));
     _categoryService = categoryService ?? throw new ArgumentNullException(nameof(categoryService));
 }
Esempio n. 7
0
 public IndexModel(IStoreProductService storeProductService)
 {
     _storeProductService = storeProductService;
 }