public PricesService(PricesClient <PricesDTO> client,
                      IUnitOfWorkProduccion repository,
                      IMapper mapper) :
     base(client, repository, mapper)
 {
     _pricesClient = client;
 }
예제 #2
0
 public SKUSpecificationsService(ProductAndSKUSpecificationsClient <SKUSpecificationDTO> client,
                                 IUnitOfWorkProduccion repository,
                                 IMapper mapper) :
     base(client, repository, mapper)
 {
     _SKUspecificationsClient = client;
 }
 public SKUFilesService(SKUFilesClient <SKUFileDTO> client,
                        IUnitOfWorkProduccion repository,
                        IMapper mapper,
                        IConfigurationRoot configuration) :
     base(client, repository, mapper)
 {
     _SKUFilesClient = client;
     Configuration   = configuration;
 }
 public InventoryService(InventoryClient <InventoryDTO> client,
                         IUnitOfWorkProduccion repository,
                         IMapper mapper,
                         Serilog.ILogger logger) :
     base(client, repository, mapper)
 {
     _inventoryClient = client;
     _logger          = logger;
 }
 public SpecificationsService(SpecificationsClient <SpecificationDTO> client, IUnitOfWorkProduccion repository, IMapper mapper) :
     base(client, repository, mapper)
 {
 }
예제 #6
0
 public SKUService(SKUClient <SkuDTO> client,
                   IUnitOfWorkProduccion repository,
                   IMapper mapper) :
     base(client, repository, mapper)
 {
 }
 public BrandsService(BrandsClient <BrandDTO> client,
                      IUnitOfWorkProduccion repository,
                      IMapper mapper) :
     base(client, repository, mapper)
 {
 }
예제 #8
0
 public CategorysService(CategorysClient <CategoryDTO> client,
                         IUnitOfWorkProduccion repository,
                         IMapper mapper) :
     base(client, repository, mapper)
 {
 }
예제 #9
0
 public ProductsService(ProductsClient <ProductDTO> client,
                        IUnitOfWorkProduccion repository,
                        IMapper mapper) :
     base(client, repository, mapper)
 {
 }
 public MotosService(MotosClient <MotosDocumentDTO> client,
                     IUnitOfWorkProduccion repository,
                     IMapper mapper) :
     base(client, repository, mapper)
 {
 }