public CreateProductModel(ITaxPayerRepository taxPayerService, IDDVRepository ddvService, IProductService productService) { this.taxPayerService = taxPayerService; this.ddvService = ddvService; this.productService = productService; }
public DDVApiController(IDDVRepository ddvService) { this.ddvService = ddvService; }
public DdvController(IDDVRepository ddvRepository) { this.ddvRepository = ddvRepository; }
public ProductModel(IProductRepository productRepository, ITaxPayerRepository taxPayerRepository, IDDVRepository ddvRepository) { this.productRepository = productRepository; this.taxPayerRepository = taxPayerRepository; this.ddvRepository = ddvRepository; }
public FiscalEditModel(ITaxPayerRepository taxPayerRepository, IFiscalReceiptRepository fiscalReceiptRepository, IDDVRepository ddvRepository) { this.taxPayerRepository = taxPayerRepository; this.fiscalReceiptRepository = fiscalReceiptRepository; this.ddvRepository = ddvRepository; }