public SlipService(ISlipRepository slipRepository, ICatalogService catalogService, SlipServiceSettings slipSettings) { _slipRepository = slipRepository; _catalogService = catalogService; _slipSettings = slipSettings; _printDocument = new PrintDocument(); }
public LVSlipHrblFabric(ICatalogService productService, ISlipRepository slipComponentRepository) : base(productService) { _slipComponentRepository = slipComponentRepository; }
public SlipController(ISlipRepository slipRepository, IMapper mapper) { this.slipRepository = slipRepository; this.mapper = mapper; }