Beispiel #1
0
 public ProductListPriceHistoryService(
     ILogger <IProductListPriceHistoryRepository> logger,
     IProductListPriceHistoryRepository productListPriceHistoryRepository,
     IApiProductListPriceHistoryRequestModelValidator productListPriceHistoryModelValidator,
     IBOLProductListPriceHistoryMapper bolproductListPriceHistoryMapper,
     IDALProductListPriceHistoryMapper dalproductListPriceHistoryMapper)
     : base(logger,
            productListPriceHistoryRepository,
            productListPriceHistoryModelValidator,
            bolproductListPriceHistoryMapper,
            dalproductListPriceHistoryMapper)
 {
 }
 public AbstractProductListPriceHistoryService(
     ILogger logger,
     IProductListPriceHistoryRepository productListPriceHistoryRepository,
     IApiProductListPriceHistoryRequestModelValidator productListPriceHistoryModelValidator,
     IBOLProductListPriceHistoryMapper bolProductListPriceHistoryMapper,
     IDALProductListPriceHistoryMapper dalProductListPriceHistoryMapper)
     : base()
 {
     this.ProductListPriceHistoryRepository     = productListPriceHistoryRepository;
     this.ProductListPriceHistoryModelValidator = productListPriceHistoryModelValidator;
     this.BolProductListPriceHistoryMapper      = bolProductListPriceHistoryMapper;
     this.DalProductListPriceHistoryMapper      = dalProductListPriceHistoryMapper;
     this.logger = logger;
 }
Beispiel #3
0
 public AbstractProductService(
     ILogger logger,
     IProductRepository productRepository,
     IApiProductRequestModelValidator productModelValidator,
     IBOLProductMapper bolProductMapper,
     IDALProductMapper dalProductMapper,
     IBOLBillOfMaterialMapper bolBillOfMaterialMapper,
     IDALBillOfMaterialMapper dalBillOfMaterialMapper,
     IBOLProductCostHistoryMapper bolProductCostHistoryMapper,
     IDALProductCostHistoryMapper dalProductCostHistoryMapper,
     IBOLProductInventoryMapper bolProductInventoryMapper,
     IDALProductInventoryMapper dalProductInventoryMapper,
     IBOLProductListPriceHistoryMapper bolProductListPriceHistoryMapper,
     IDALProductListPriceHistoryMapper dalProductListPriceHistoryMapper,
     IBOLProductProductPhotoMapper bolProductProductPhotoMapper,
     IDALProductProductPhotoMapper dalProductProductPhotoMapper,
     IBOLProductReviewMapper bolProductReviewMapper,
     IDALProductReviewMapper dalProductReviewMapper,
     IBOLTransactionHistoryMapper bolTransactionHistoryMapper,
     IDALTransactionHistoryMapper dalTransactionHistoryMapper,
     IBOLWorkOrderMapper bolWorkOrderMapper,
     IDALWorkOrderMapper dalWorkOrderMapper)
     : base()
 {
     this.productRepository                = productRepository;
     this.productModelValidator            = productModelValidator;
     this.bolProductMapper                 = bolProductMapper;
     this.dalProductMapper                 = dalProductMapper;
     this.bolBillOfMaterialMapper          = bolBillOfMaterialMapper;
     this.dalBillOfMaterialMapper          = dalBillOfMaterialMapper;
     this.bolProductCostHistoryMapper      = bolProductCostHistoryMapper;
     this.dalProductCostHistoryMapper      = dalProductCostHistoryMapper;
     this.bolProductInventoryMapper        = bolProductInventoryMapper;
     this.dalProductInventoryMapper        = dalProductInventoryMapper;
     this.bolProductListPriceHistoryMapper = bolProductListPriceHistoryMapper;
     this.dalProductListPriceHistoryMapper = dalProductListPriceHistoryMapper;
     this.bolProductProductPhotoMapper     = bolProductProductPhotoMapper;
     this.dalProductProductPhotoMapper     = dalProductProductPhotoMapper;
     this.bolProductReviewMapper           = bolProductReviewMapper;
     this.dalProductReviewMapper           = dalProductReviewMapper;
     this.bolTransactionHistoryMapper      = bolTransactionHistoryMapper;
     this.dalTransactionHistoryMapper      = dalTransactionHistoryMapper;
     this.bolWorkOrderMapper               = bolWorkOrderMapper;
     this.dalWorkOrderMapper               = dalWorkOrderMapper;
     this.logger = logger;
 }
Beispiel #4
0
 public ProductService(
     ILogger <IProductRepository> logger,
     IProductRepository productRepository,
     IApiProductRequestModelValidator productModelValidator,
     IBOLProductMapper bolproductMapper,
     IDALProductMapper dalproductMapper,
     IBOLBillOfMaterialMapper bolBillOfMaterialMapper,
     IDALBillOfMaterialMapper dalBillOfMaterialMapper,
     IBOLProductCostHistoryMapper bolProductCostHistoryMapper,
     IDALProductCostHistoryMapper dalProductCostHistoryMapper,
     IBOLProductInventoryMapper bolProductInventoryMapper,
     IDALProductInventoryMapper dalProductInventoryMapper,
     IBOLProductListPriceHistoryMapper bolProductListPriceHistoryMapper,
     IDALProductListPriceHistoryMapper dalProductListPriceHistoryMapper,
     IBOLProductProductPhotoMapper bolProductProductPhotoMapper,
     IDALProductProductPhotoMapper dalProductProductPhotoMapper,
     IBOLProductReviewMapper bolProductReviewMapper,
     IDALProductReviewMapper dalProductReviewMapper,
     IBOLTransactionHistoryMapper bolTransactionHistoryMapper,
     IDALTransactionHistoryMapper dalTransactionHistoryMapper,
     IBOLWorkOrderMapper bolWorkOrderMapper,
     IDALWorkOrderMapper dalWorkOrderMapper
     )
     : base(logger,
            productRepository,
            productModelValidator,
            bolproductMapper,
            dalproductMapper,
            bolBillOfMaterialMapper,
            dalBillOfMaterialMapper,
            bolProductCostHistoryMapper,
            dalProductCostHistoryMapper,
            bolProductInventoryMapper,
            dalProductInventoryMapper,
            bolProductListPriceHistoryMapper,
            dalProductListPriceHistoryMapper,
            bolProductProductPhotoMapper,
            dalProductProductPhotoMapper,
            bolProductReviewMapper,
            dalProductReviewMapper,
            bolTransactionHistoryMapper,
            dalTransactionHistoryMapper,
            bolWorkOrderMapper,
            dalWorkOrderMapper)
 {
 }