public NavipsController(IUnitOfWork unitofwork, IPersonService personService, INavipService navipservice, IGeneratePdf generatePdf, INavyAccountDbContext context)
 {
     this.personService = personService;
     this.navipservice  = navipservice;
     this.generatePdf   = generatePdf;
     this.context       = context;
     this.unitofwork    = unitofwork;
 }
Example #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");
 }
Example #3
0
 public NavipController(IPersonService personService, INavipService navipservice, IConfiguration configuration)
 {
     this.personService = personService;
     this.navipservice  = navipservice;
     _connectionstring  = configuration.GetConnectionString("DefaultConnection");
 }