Beispiel #1
0
 public ClaimTypeController(ILedgerService ledgerService, IConfiguration configuration,
                            IFundTypeService fundTypeService, IClaimRegisterService claimRegisterService,
                            IGeneratePdf generatePdf, IFundTypeCodeService fundService,
                            IClaimTypeServices claimTypeService, IUnitOfWork unitOfWork,
                            IChartofAccountService chartofAccountService, INavipService navipservice)
 {
     this.claimRegisterService  = claimRegisterService;
     this.ledgerService         = ledgerService;
     this.generatePdf           = generatePdf;
     this.fundService           = fundService;
     this.claimTypeService      = claimTypeService;
     this.fundTypeService       = fundTypeService;
     this.unitOfWork            = unitOfWork;
     this.chartofAccountService = chartofAccountService;
     this.navipservice          = navipservice;
     _connectionstring          = configuration.GetConnectionString("DefaultConnection");
 }
Beispiel #2
0
 private void Load()
 {
     CleanUp();
     _chartofAccountService = new ChartofAccountService();
     GetChartofAccounts();
 }
Beispiel #3
0
 public SubsidiaryController(IChartofAccountService chartofAccountService, IGeneratePdf generatePdf)
 {
     this.chartofAccountService = chartofAccountService;
     this.generatePdf           = generatePdf;
 }
 public ChartofAccountController(IChartofAccountService chartofAccountService)
 {
     this.chartofAccountService = chartofAccountService;
 }