//private IConverter _converter;


        public TrialbalanceReportController(ITrialbalanceReportService services, IGeneratePdf generatePdf, IFundTypeCodeService fundService, IAccountHistoryService accountHistoryService)
        {
            this.services              = services;
            this.generatePdf           = generatePdf;
            this.fundService           = fundService;
            this.accountHistoryService = accountHistoryService;
        }
예제 #2
0
 public TrialBalanceUploadController(IUnitOfWork unitOfWork, IConfiguration configuration, INavyAccountDbContext context, IFundTypeCodeService fundService)
 {
     this.unitOfWork   = unitOfWork;
     this.context      = context;
     _connectionString = configuration.GetConnectionString("DefaultConnection");
     this.fundService  = fundService;
 }
 public FinancialDocController(IUnitOfWork unitOfWork, IFinancialDocService financialDocService, IConfiguration configuration, IFundTypeCodeService fundTypeService)
 {
     _connectionstring        = configuration.GetConnectionString("DefaultConnection");
     this.fundTypeService     = fundTypeService;
     this.financialDocService = financialDocService;
     this.unitOfWork          = unitOfWork;
 }
 public DashBoardWidgetController(IUnitOfWork unitOfWork, ILedgerService ledgerService, IFundTypeCodeService fundTypeService, ILoanRegisterService loanRegisterService)
 {
     this.ledgerService       = ledgerService;
     this.fundTypeService     = fundTypeService;
     this.loanRegisterService = loanRegisterService;
     this.unitOfWork          = unitOfWork;
 }
예제 #5
0
 public LoandiscprocessController(IFundTypeCodeService fundtypeservice, ILoandiscService loandiscService, ILoanTypeService loantypeService, IUnitOfWork unitOfWork)
 {
     this.loandiscService = loandiscService;
     this.loantypeService = loantypeService;
     this.unitOfWork      = unitOfWork;
     this.fundtypeservice = fundtypeservice;
 }
예제 #6
0
        public AuthenticationController(INavyAccountDbContext context, IUnitOfWork unitOfWork, IFundTypeCodeService fundtypecodeService, IAuthenticationService authenticationService, IUserService userService) : base(userService)
        {
            this.userService           = userService;
            this.authenticationService = authenticationService;

            this.fundtypecodeService = fundtypecodeService;
            this.unitOfWork          = unitOfWork;
            this.context             = context;
        }
예제 #7
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");
 }
예제 #8
0
 public SuplusReportController(IFundTypeCodeService fundService, ISurplusService service, IGeneratePdf generatePdf)
 {
     this.fundService = fundService;
     this.service     = service;
     this.generatePdf = generatePdf;
 }
예제 #9
0
 public AuditTrailController(IAuditTrailServices services, IFundTypeCodeService fundService, IGeneratePdf generatePdf)
 {
     this.services    = services;
     this.fundService = fundService;
     this.generatePdf = generatePdf;
 }
 public FundTypeCodeController(IFundTypeCodeService fundTypeService)
 {
     this.fundTypeService = fundTypeService;
 }