コード例 #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 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");
 }
コード例 #3
0
 public ClaimtypeController(IClaimTypeServices services)
 {
     this.services = services;
 }