コード例 #1
0
 public ClaimProcessUpload(List <ClaimCapture> Captures, IUnitOfWork unitOfWork, IClaimTypeServices services, IFundTypeService funds)
 {
     this.unitOfWork = unitOfWork;
     this.Captures   = Captures;
     this.services   = services;
     this.funds      = funds;
 }
コード例 #2
0
 public ContrDiscController(IFundTypeService fundTypeService, IUnitOfWork unitofWork, INavyAccountDbContext context, IConfiguration configuration, IContrService contrService, IGeneratePdf generatePdf)
 {
     _connectionstring    = configuration.GetConnectionString("DefaultConnection");
     this.unitofWork      = unitofWork;
     this.context         = context;
     this.contrService    = contrService;
     this.generatePdf     = generatePdf;
     this.fundTypeService = fundTypeService;
 }
コード例 #3
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");
 }
コード例 #4
0
 public NpfContributionController(IContributionServices services, IFundTypeService fundService, IGeneratePdf generatePdf)
 {
     this.services    = services;
     this.fundService = fundService;
     this.generatePdf = generatePdf;
 }
コード例 #5
0
 public FundTypeController(IGeneratePdf generatePdf, IFundTypeService fundtypeService)
 {
     this.fundtypeService = fundtypeService;
     this.generatePdf     = generatePdf;
 }