public CreateProductModel(ITaxPayerRepository taxPayerService, IDDVRepository ddvService, IProductService productService)
 {
     this.taxPayerService = taxPayerService;
     this.ddvService      = ddvService;
     this.productService  = productService;
 }
Example #2
0
 public DDVApiController(IDDVRepository ddvService)
 {
     this.ddvService = ddvService;
 }
Example #3
0
 public DdvController(IDDVRepository ddvRepository)
 {
     this.ddvRepository = ddvRepository;
 }
Example #4
0
 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;
 }