Ejemplo n.º 1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="taxService"></param>
 /// <param name="currencyService"></param>
 /// <param name="countryService"></param>
 /// <param name="taxTypeService"></param>
 /// <param name="frequenceOptionService"></param>
 /// <param name="bankAccountService"></param>
 public TaxController(ITaxService taxService, ICurrencyService currencyService, ICountryService countryService, ITaxTypeService taxTypeService, IFrequenceOptionService frequenceOptionService, IBankAccountService bankAccountService) : base(bankAccountService)
 {
     this._taxService             = taxService;
     this._currencyService        = currencyService;
     this._countryService         = countryService;
     this._taxTypeService         = taxTypeService;
     this._frequenceOptionService = frequenceOptionService;
 }
Ejemplo n.º 2
0
 public DirectSalesOrderController(
     IOrganizationService OrganizationService,
     IEditedPriceStatusService EditedPriceStatusService,
     IStoreService StoreService,
     IAppUserService AppUserService,
     IUnitOfMeasureService UnitOfMeasureService,
     IUnitOfMeasureGroupingService UnitOfMeasureGroupingService,
     IDirectSalesOrderService DirectSalesOrderService,
     IProductGroupingService ProductGroupingService,
     IProductTypeService ProductTypeService,
     IProductService ProductService,
     IRequestStateService RequestStateService,
     ISupplierService SupplierService,
     IStoreGroupingService StoreGroupingService,
     IStoreStatusService StoreStatusService,
     IStoreTypeService StoreTypeService,
     ITaxTypeService TaxTypeService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.OrganizationService          = OrganizationService;
     this.EditedPriceStatusService     = EditedPriceStatusService;
     this.StoreService                 = StoreService;
     this.AppUserService               = AppUserService;
     this.UnitOfMeasureService         = UnitOfMeasureService;
     this.UnitOfMeasureGroupingService = UnitOfMeasureGroupingService;
     this.DirectSalesOrderService      = DirectSalesOrderService;
     this.ProductGroupingService       = ProductGroupingService;
     this.ProductTypeService           = ProductTypeService;
     this.ProductService               = ProductService;
     this.RequestStateService          = RequestStateService;
     this.SupplierService              = SupplierService;
     this.StoreGroupingService         = StoreGroupingService;
     this.StoreStatusService           = StoreStatusService;
     this.StoreTypeService             = StoreTypeService;
     this.TaxTypeService               = TaxTypeService;
     this.CurrentContext               = CurrentContext;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="taxTypeService"></param>
 /// <param name="bankAccountService"></param>
 public TaxTypeController(ITaxTypeService taxTypeService, IBankAccountService bankAccountService) : base(bankAccountService)
 {
     this._taxTypeService = taxTypeService;
 }
 public TaxTypeController(ITaxTypeService TaxTypeService)
 {
     _TaxTypeService = TaxTypeService;
 }
Ejemplo n.º 5
0
 public TaxController(ITaxTypeService taxTypeService, ITaxCalculatorService taxCalculatorService, IMediator mediator)
 {
     _taxTypeService       = taxTypeService;
     _taxCalculatorService = taxCalculatorService;
     Mediator = mediator;
 }