예제 #1
0
 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;
 }
예제 #2
0
 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;
 }
예제 #3
0
 public NSXController(IErrorLogService ErrorLogService,
                      INSXService NSXService) : base(ErrorLogService)
 {
     this.NSXService = NSXService;
 }