Ejemplo n.º 1
0
 public ProductController(IProductService productService, IVatCategoryService vatCategoryService, IVatService vatService, IUnitOfMeasureTypeService unitOfMeasureTypeService, IUnitOfMeasureService unitOfMeasureService,
                          ISubCategoryService subCategoryService, ICategoryService categoryService, IPackagingTypeService packagingTypeService,
                          IPackagingService packagingService, ISubBrandService subBrandService, IBrandService brandService, IOptions <AppConfig> appConfig)
 {
     _appConfig                = appConfig;
     _productService           = productService;
     _brandService             = brandService;
     _subBrandService          = subBrandService;
     _packagingService         = packagingService;
     _packagingTypeService     = packagingTypeService;
     _categoryService          = categoryService;
     _subCategoryService       = subCategoryService;
     _unitOfMeasureService     = unitOfMeasureService;
     _unitOfMeasureTypeService = unitOfMeasureTypeService;
     _vatCategoryService       = vatCategoryService;
     _vatService               = vatService;
 }
Ejemplo n.º 2
0
 public VatCategoryController(
     IVatCategoryService vatCategoryService
     )
 {
     _vatCategoryService = vatCategoryService;
 }
Ejemplo n.º 3
0
 public VatService(IVatCategoryService vatService, IBaseRepository <Vat> baseRepository) : base(baseRepository)
 {
     _baseRepository = baseRepository;
     _vatService     = vatService;
 }
Ejemplo n.º 4
0
 public VatCategoryController(IVatCategoryService vatCategoryService, IVatService vatService, IOptions <AppConfig> appConfig)
 {
     _appConfig          = appConfig;
     _vatCategoryService = vatCategoryService;
     _vatService         = vatService;
 }