public ProductController(IErrorLogService errorLogService, IProductService productService, INSXService NSXService, IProductCategoryService productCategoryService, ICategoryService categoryService) : base(errorLogService) { this.productService = productService; this.NSXService = NSXService; this.productCategoryService = productCategoryService; this.categoryService = categoryService; }
public ProductService( IProductRepository productRepository, IProductCategoryRepository productCategoryRepository, ICategoryRepository categoryRepository, ISupplierRepository supplierRepository, INSXService NSXService, IUnitOfWork unitOfWork) { this.productRepository = productRepository; this.productCategoryRepository = productCategoryRepository; this.categoryRepository = categoryRepository; this.supplierRepository = supplierRepository; this.NSXService = NSXService; this.unitOfWork = unitOfWork; }
public NSXController(IErrorLogService ErrorLogService, INSXService NSXService) : base(ErrorLogService) { this.NSXService = NSXService; }