コード例 #1
0
 // GET: MatchingBonus
 public MatchingBonusController(IUserService userService, IInvestmentService investmentService, IFinancialService financialService, IDocService docService)
 {
     _userService       = userService;
     _investmentService = investmentService;
     _financialService  = financialService;
     _docService        = docService;
 }
コード例 #2
0
 public PurchasingService(IFinancialService financialService,
                          IInventoryService inventoryService,
                          IRepository <PurchaseOrderHeader> purchaseOrderRepo,
                          IRepository <PurchaseInvoiceHeader> purchaseInvoiceRepo,
                          IRepository <PurchaseReceiptHeader> purchaseReceiptRepo,
                          IRepository <Vendor> vendorRepo,
                          IRepository <Account> accountRepo,
                          IRepository <Item> itemRepo,
                          IRepository <Measurement> measurementRepo,
                          IRepository <SequenceNumber> sequenceNumberRepo,
                          IRepository <VendorPayment> vendorPaymentRepo,
                          IRepository <GeneralLedgerSetting> generalLedgerSettingRepo,
                          IRepository <PaymentTerm> paymentTermRepo,
                          IRepository <Bank> bankRepo
                          )
     : base(sequenceNumberRepo, generalLedgerSettingRepo, paymentTermRepo, bankRepo)
 {
     _financialService         = financialService;
     _inventoryService         = inventoryService;
     _purchaseOrderRepo        = purchaseOrderRepo;
     _purchaseInvoiceRepo      = purchaseInvoiceRepo;
     _purchaseReceiptRepo      = purchaseReceiptRepo;
     _vendorRepo               = vendorRepo;
     _accountRepo              = accountRepo;
     _itemRepo                 = itemRepo;
     _measurementRepo          = measurementRepo;
     _sequenceNumberRepo       = sequenceNumberRepo;
     _vendorPaymentRepo        = vendorPaymentRepo;
     _generalLedgerSettingRepo = generalLedgerSettingRepo;
     _paymentTermRepo          = paymentTermRepo;
     _bankRepo                 = bankRepo;
 }
コード例 #3
0
 public FinancialJournalController(
     IFinancialService service,
     ILogger <FinancialJournalController> log)
 {
     _service = service;
     _log     = log;
 }
コード例 #4
0
ファイル: SalesService.cs プロジェクト: codebangla/accountgo
 public SalesService(IFinancialService financialService,
     IInventoryService inventoryService,
     IRepository<SalesOrderHeader> salesOrderRepo,
     IRepository<SalesInvoiceHeader> salesInvoiceRepo,
     IRepository<SalesReceiptHeader> salesReceiptRepo,
     IRepository<Customer> customerRepo,
     IRepository<Account> accountRepo,
     IRepository<Item> itemRepo,
     IRepository<Measurement> measurementRepo,
     IRepository<SequenceNumber> sequenceNumberRepo,
     IRepository<PaymentTerm> paymentTermRepo,
     IRepository<SalesDeliveryHeader> salesDeliveryRepo,
     IRepository<Bank> bankRepo,
     IRepository<GeneralLedgerSetting> generalLedgerSetting,
     IRepository<Contact> contactRepo)
     : base(sequenceNumberRepo, generalLedgerSetting, paymentTermRepo, bankRepo)
 {
     _financialService = financialService;
     _inventoryService = inventoryService;
     _salesOrderRepo = salesOrderRepo;
     _salesInvoiceRepo = salesInvoiceRepo;
     _salesReceiptRepo = salesReceiptRepo;
     _customerRepo = customerRepo;
     _accountRepo = accountRepo;
     _itemRepo = itemRepo;
     _measurementRepo = measurementRepo;
     _sequenceNumberRepo = sequenceNumberRepo;
     _paymentTermRepo = paymentTermRepo;
     _salesDeliveryRepo = salesDeliveryRepo;
     _bankRepo = bankRepo;
     _genetalLedgerSetting = generalLedgerSetting;
     _contactRepo = contactRepo;
 }
コード例 #5
0
 public SalesService(IFinancialService financialService,
                     IInventoryService inventoryService,
                     IRepository <SalesOrderHeader> salesOrderRepo,
                     IRepository <SalesInvoiceHeader> salesInvoiceRepo,
                     IRepository <SalesReceiptHeader> salesReceiptRepo,
                     IRepository <Customer> customerRepo,
                     IRepository <Account> accountRepo,
                     IRepository <Item> itemRepo,
                     IRepository <Measurement> measurementRepo,
                     IRepository <SequenceNumber> sequenceNumberRepo,
                     IRepository <PaymentTerm> paymentTermRepo,
                     IRepository <SalesDeliveryHeader> salesDeliveryRepo,
                     IRepository <Bank> bankRepo,
                     IRepository <GeneralLedgerSetting> generalLedgerSetting,
                     IRepository <Contact> contactRepo,
                     IRepository <TaxGroup> taxGroupRepo)
     : base(sequenceNumberRepo, generalLedgerSetting, paymentTermRepo, bankRepo)
 {
     _financialService     = financialService;
     _inventoryService     = inventoryService;
     _salesOrderRepo       = salesOrderRepo;
     _salesInvoiceRepo     = salesInvoiceRepo;
     _salesReceiptRepo     = salesReceiptRepo;
     _customerRepo         = customerRepo;
     _accountRepo          = accountRepo;
     _itemRepo             = itemRepo;
     _measurementRepo      = measurementRepo;
     _sequenceNumberRepo   = sequenceNumberRepo;
     _paymentTermRepo      = paymentTermRepo;
     _salesDeliveryRepo    = salesDeliveryRepo;
     _bankRepo             = bankRepo;
     _genetalLedgerSetting = generalLedgerSetting;
     _contactRepo          = contactRepo;
     _taxGroupRepo         = taxGroupRepo;
 }
コード例 #6
0
 public WalletController(IFinancialService financialService, IUserService userService, IBankService bankService, IDocService docService)
 {
     _financialService = financialService;
     _userService      = userService;
     _bankService      = bankService;
     _docService       = docService;
 }
コード例 #7
0
ファイル: HomeController.cs プロジェクト: AaronTee/FIX
 public HomeController(IUserService userService, IFinancialService financialService, IInvestmentService investmentService, IArticleService articleService)
 {
     _userService       = userService;
     _financialService  = financialService;
     _investmentService = investmentService;
     _articleService    = articleService;
 }
コード例 #8
0
 public FinancialAccountController(
     IFinancialService service,
     ILogger <FinancialAccountController> log)
 {
     _service = service;
     _log     = log;
 }
コード例 #9
0
 public PurchasingService(IFinancialService financialService,
     IInventoryService inventoryService,
     IRepository<PurchaseOrderHeader> purchaseOrderRepo,
     IRepository<PurchaseInvoiceHeader> purchaseInvoiceRepo,
     IRepository<PurchaseReceiptHeader> purchaseReceiptRepo,
     IRepository<Vendor> vendorRepo,
     IRepository<Account> accountRepo,
     IRepository<Item> itemRepo,
     IRepository<Measurement> measurementRepo,
     IRepository<SequenceNumber> sequenceNumberRepo,
     IRepository<VendorPayment> vendorPaymentRepo,
     IRepository<GeneralLedgerSetting> generalLedgerSettingRepo,
     IRepository<PaymentTerm> paymentTermRepo,
     IRepository<Bank> bankRepo
     )
     : base(sequenceNumberRepo, generalLedgerSettingRepo, paymentTermRepo, bankRepo)
 {
     _financialService = financialService;
     _inventoryService = inventoryService;
     _purchaseOrderRepo = purchaseOrderRepo;
     _purchaseInvoiceRepo = purchaseInvoiceRepo;
     _purchaseReceiptRepo = purchaseReceiptRepo;
     _vendorRepo = vendorRepo;
     _accountRepo = accountRepo;
     _itemRepo = itemRepo;
     _measurementRepo = measurementRepo;
     _sequenceNumberRepo = sequenceNumberRepo;
     _vendorPaymentRepo = vendorPaymentRepo;
     _generalLedgerSettingRepo = generalLedgerSettingRepo;
     _paymentTermRepo = paymentTermRepo;
     _bankRepo = bankRepo;
 }
コード例 #10
0
 public PurchasingController(IInventoryService inventoryService,
     IFinancialService financialService,
     IPurchasingService purchasingService)
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
     _purchasingService = purchasingService;
 }
コード例 #11
0
 public PurchasingController(IAdministrationService adminService,
                             IPurchasingService purchasingService,
                             IFinancialService financialService)
 {
     _adminService      = adminService;
     _purchasingService = purchasingService;
     _financialService  = financialService;
 }
コード例 #12
0
ファイル: SalesController.cs プロジェクト: jontacky/accountgo
 public SalesController(IAdministrationService adminService,
                        ISalesService salesService,
                        IFinancialService financialService)
 {
     _adminService     = adminService;
     _salesService     = salesService;
     _financialService = financialService;
 }
コード例 #13
0
 public ReportsController(ISalesService salesService,
                          IInventoryService inventoryService,
                          IFinancialService financialService)
 {
     _salesService     = salesService;
     _inventoryService = inventoryService;
     _financialService = financialService;
 }
コード例 #14
0
 public SalesViewModelBuilder(IInventoryService inventoryService,
                              IFinancialService financialService,
                              ISalesService salesService)
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
     _salesService     = salesService;
 }
コード例 #15
0
 public ReportsController(ISalesService salesService,
     IInventoryService inventoryService,
     IFinancialService financialService)
 {
     _salesService = salesService;
     _inventoryService = inventoryService;
     _financialService = financialService;
 }
コード例 #16
0
 public SalesViewModelBuilder(IInventoryService inventoryService,
     IFinancialService financialService,
     ISalesService salesService)
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
     _salesService = salesService;
 }
コード例 #17
0
 public void SetServiceHelpers(IInventoryService inventoryService, IFinancialService financialService)
 {
     _inventoryService = inventoryService;
     foreach (var line in SalesLineItems)
     {
         line.SetServiceHelpers(financialService);
     }
 }
コード例 #18
0
 public PurchasingController(IInventoryService inventoryService,
                             IFinancialService financialService,
                             IPurchasingService purchasingService)
 {
     _inventoryService  = inventoryService;
     _financialService  = financialService;
     _purchasingService = purchasingService;
 }
コード例 #19
0
 public OrderController(ApplicationDbContext context, IOrderService orderService, IOrderMessageService orderMessageService, ILabworksService labworksService, IFinancialService financialService, IOptions <AppSettings> appSettings)
 {
     _context             = context;
     _orderService        = orderService;
     _orderMessageService = orderMessageService;
     _labworksService     = labworksService;
     _financialService    = financialService;
     _appSettings         = appSettings.Value;
 }
コード例 #20
0
ファイル: ReferenceController.cs プロジェクト: lulzzz/AK
 public ReferenceController(
     IInventoryService service, IFinancialService financialService, IPurchasingService purchasingService, ISalesService salesService,
     ILogger <ReferenceController> log)
 {
     _service           = service;
     _financialService  = financialService;
     _purchasingService = purchasingService;
     _log         = log;
     _saleService = salesService;
 }
コード例 #21
0
        public SalesController(IInventoryService inventoryService,
            IFinancialService financialService,
            ISalesService salesService)
        {
            _inventoryService = inventoryService;
            _financialService = financialService;
            _salesService = salesService;

            _viewModelBuilder = new Web.Models.ViewModels.Sales.SalesViewModelBuilder(inventoryService, financialService, salesService);
        }
コード例 #22
0
ファイル: SalesController.cs プロジェクト: jktieman/accountgo
        public SalesController(IInventoryService inventoryService,
                               IFinancialService financialService,
                               ISalesService salesService)
        {
            _inventoryService = inventoryService;
            _financialService = financialService;
            _salesService     = salesService;

            _viewModelBuilder = new Web.Models.ViewModels.Sales.SalesViewModelBuilder(inventoryService, financialService, salesService);
        }
コード例 #23
0
ファイル: LabController.cs プロジェクト: benningd54/Anlab
 public LabController(ApplicationDbContext dbContext, IOrderService orderService, ILabworksService labworksService, IOrderMessageService orderMessageService, IFileStorageService fileStorageService, ISlothService slothService, IFinancialService financialService)
 {
     _dbContext           = dbContext;
     _orderService        = orderService;
     _labworksService     = labworksService;
     _orderMessageService = orderMessageService;
     _fileStorageService  = fileStorageService;
     _slothService        = slothService;
     _financialService    = financialService;
 }
コード例 #24
0
 public CommonController(IInventoryService inventoryService,
                         IFinancialService financialService,
                         IPurchasingService purchasingService,
                         ISalesService salesService)
 {
     _inventoryService  = inventoryService;
     _financialService  = financialService;
     _purchasingService = purchasingService;
     _salesService      = salesService;
 }
コード例 #25
0
 public CommonController(IInventoryService inventoryService,
     IFinancialService financialService,
     IPurchasingService purchasingService,
     ISalesService salesService,
     IAdministrationService administrationService)
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
     _purchasingService = purchasingService;
     _salesService = salesService;
     _administrationService = administrationService;
 }
コード例 #26
0
 public CommonController(ISalesService salesService,
                         IAdministrationService administrationService,
                         IInventoryService inventoryService,
                         IPurchasingService purchasingService,
                         IFinancialService financialService)
 {
     _salesService          = salesService;
     _administrationService = administrationService;
     _inventoryService      = inventoryService;
     _purchasingService     = purchasingService;
     _financialService      = financialService;
 }
コード例 #27
0
 public LmsController(IReturnGoodsService returnGoodsService,
                      IUserService userService,
                      IWorkContext workContext,
                      IFeeManageService feeManageService,
                      IAuthenticationService authenticationService,
                      IFinancialService financialService)
 {
     _returnGoodsService    = returnGoodsService;
     _userService           = userService;
     _workContext           = workContext;
     _feeManageService      = feeManageService;
     _authenticationService = authenticationService;
     _financialService      = financialService;
 }
コード例 #28
0
ファイル: Initializer.cs プロジェクト: bikalpkarn1/Account
 public Initializer(IAdministrationService adminService,
                    IFinancialService financialService,
                    ISalesService salesService,
                    IPurchasingService purchasingService,
                    IInventoryService inventoryService,
                    ISecurityService securityService)
 {
     _adminService      = adminService;
     _financialService  = financialService;
     _salesService      = salesService;
     _purchasingService = purchasingService;
     _inventoryService  = inventoryService;
     _securityService   = securityService;
 }
コード例 #29
0
 public ReturnGoodsService(IReturnGoodsRepository returnGoodsRepository,
                           IWayBillInfoRepository wayBillInfoRepository,
                           ICustomerOrderInfoRepository customerOrderInfoRepository,
                           ICustomerBalanceRepository customerBalanceRepository,
                           ICustomerAmountRecordRepository customerAmountRecordRepository,
                           IWorkContext workContext,
                           IWayBillEventLogRepository wayBillEventLogRepository,
                           IFreightService freightService,
                           IFinancialService financialService,
                           IReceivingExpenseInfoRepository receivingExpenseInfoRepository,
                           IReceivingExpensRepository receivingExpensRepository)
 {
     _returnGoodsRepository          = returnGoodsRepository;
     _wayBillInfoRepository          = wayBillInfoRepository;
     _customerOrderInfoRepository    = customerOrderInfoRepository;
     _customerAmountRecordRepository = customerAmountRecordRepository;
     _customerBalanceRepository      = customerBalanceRepository;
     _wayBillEventLogRepository      = wayBillEventLogRepository;
     _freightService   = freightService;
     _workContext      = workContext;
     _financialService = financialService;
     _receivingExpenseInfoRepository = receivingExpenseInfoRepository;
     _receivingExpensRepository      = receivingExpensRepository;
 }
コード例 #30
0
 public BankAccount(IFinancialService financialService, decimal balance = 0)
 {
     this.financialService = financialService;
     this.balance          = balance;
 }
コード例 #31
0
 public FinancialsController(IAdministrationService adminService,
                             IFinancialService financialService)
 {
     _adminService     = adminService;
     _financialService = financialService;
 }
コード例 #32
0
 public SalesInvoiceHeaderViewModel(IInventoryService inventoryService, IFinancialService financialService)
 {
     SalesLine = new SalesLineItemsViewModel(inventoryService, financialService);
     Date = DateTime.Now;
 }
コード例 #33
0
 public void SetServiceHelpers(IFinancialService financialService)
 {
     _financialService = financialService;
 }
コード例 #34
0
 public FinancialController(IFinancialService financialService)
 {
     _financialService = financialService;
 }
コード例 #35
0
 public SalesLineItemsViewModel(IInventoryService inventoryService, IFinancialService financialService)
     : this()
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
 }
コード例 #36
0
 public FinancialAppService(IFinancialService financialService)
 {
     _financialService = financialService;
 }
コード例 #37
0
 public void SetServiceHelpers(IFinancialService financialService)
 {
     _financialService = financialService;
 }
コード例 #38
0
 public BankAccount(IFinancialService financialService)
 {
     this.financialService = financialService;
 }
コード例 #39
0
 public SalesLineItemViewModel(IFinancialService financialService)
     : this()
 {
     _financialService = financialService;
 }
コード例 #40
0
ファイル: Form1.cs プロジェクト: Jonne/demos
        private void Form1_Load(object sender, EventArgs e)
        {
            financialService = new FinancialService();

            comboBox1.DataSource = Enum.GetNames(typeof (Region));
        }
コード例 #41
0
 public FinancialController(IFinancialService financialService, IAdministrationService administrationService)
 {
     _financialService = financialService;
     _administrationService = administrationService;
 }
コード例 #42
0
 public PaymentsController(IFinancialService financialService)
 {
     _financialService = financialService;
 }
コード例 #43
0
 public SalesHeaderViewModel(IInventoryService inventoryService, IFinancialService financialService)
     : this()
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
 }
コード例 #44
0
 public FinancialController(IFinancialCalculator calcalculator, IFinancialService service)
 {
     _calcalculator = calcalculator;
     _service       = service;
 }
コード例 #45
0
 public SalesLineItemsViewModel(IInventoryService inventoryService, IFinancialService financialService)
     : this()
 {
     _inventoryService = inventoryService;
     _financialService = financialService;
 }
コード例 #46
0
 public void SetServiceHelpers(IInventoryService inventoryService, IFinancialService financialService)
 {
     _inventoryService = inventoryService;
     foreach(var line in SalesLineItems)
         line.SetServiceHelpers(financialService);
 }
コード例 #47
0
 public void SetServiceHelpers(IInventoryService inventoryService, IFinancialService financialService)
 {
     SalesLine.SetServiceHelpers(inventoryService, financialService);
 }