Example #1
0
 public CompanySettingsService(ICompanyRepository <Company> companyRepository,
                               IAppDeletableEntityRepository <CompanyApp> companyAppRepository,
                               IStringGenerator stringGenerator,
                               IVatTypeService vatTypeService,
                               IProductService productService)
 {
     this.companyRepository    = companyRepository;
     this.companyAppRepository = companyAppRepository;
     this.stringGenerator      = stringGenerator;
     this.vatTypeService       = vatTypeService;
     this.productService       = productService;
 }
Example #2
0
 public VatDocumentController(ICompanyDeletableEntityRepository <Company> companyRepository,
                              IVatTypeService vatTypeService,
                              IEmployeeService employeeService,
                              IPaymentTypeService paymentTypeService,
                              IBankAccountService bankAccountService,
                              IVatDocumentService vatDocumentService,
                              IUserCompanyTemp userCompanyTemp)
 {
     this.companyRepository  = companyRepository;
     this.vatTypeService     = vatTypeService;
     this.employeeService    = employeeService;
     this.paymentTypeService = paymentTypeService;
     this.bankAccountService = bankAccountService;
     this.vatDocumentService = vatDocumentService;
     this.userCompanyTemp    = userCompanyTemp;
 }
Example #3
0
 public ProductController(IProductService productService, IVatTypeService vatTypeService, IQuantityTypeService quantityTypeService)
 {
     this.productService      = productService;
     this.vatTypeService      = vatTypeService;
     this.quantityTypeService = quantityTypeService;
 }
 public VatTypeController(IVatTypeService vatTypeService)
 {
     this.vatTypeService = vatTypeService;
 }