Ejemplo n.º 1
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 LoanDiscController(IUnitOfWork unitofWork, INavyAccountDbContext context, IConfiguration configuration, ILoandiscService loandiscService)
 {
     _connectionstring    = configuration.GetConnectionString("DefaultConnection");
     this.unitofWork      = unitofWork;
     this.context         = context;
     this.loandiscService = loandiscService;
 }
 public LoanRegisterController(ILoanRegisterService loanRegisterService, IGeneratePdf generatePdf, IConfiguration configuration, IUnitOfWork unitofWork, INavyAccountDbContext context)
 {
     this.unitofWork          = unitofWork;
     this.context             = context;
     this.loanRegisterService = loanRegisterService;
     this.generatePdf         = generatePdf;
     _connectionstring        = configuration.GetConnectionString("DefaultConnection");
 }
 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;
 }
 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;
 }
Ejemplo n.º 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;
        }
Ejemplo n.º 7
0
        public UnitOfWork(INavyAccountDbContext context)
        {
            this.context = context;
            Users        = new UserRepository(context);

            Menus                  = new MenuRepository(context);
            RoleMenus              = new RoleMenuRepository(context);
            MenuGroups             = new MenuGroupRepository(context);
            UserRoles              = new UserRoleRepository(context);
            FundType               = new FundTypeRepo(context);
            actType                = new AccountTypeRepository(context);
            balSheet               = new BalanceSheetRepository(context);
            mainAccount            = new MainAccountRepository(context);
            accountChart           = new ChartRepository(context);
            subtype                = new SubTypeRepository(context);
            fundTypeCode           = new FundTypeRepository(context);
            loanType               = new LoanTypeRepo(context);
            rank                   = new RankRepo(context);
            person                 = new PersonRepo(context);
            beneficiary            = new BeneficiaryRepo(context);
            bank                   = new BankRepository(context);
            pfundrate              = new PfFundRateRepository(context);
            contribution           = new NPFContributionRepository(context);
            loanRegisterRepository = new LoanRegisterRepository(context);
            register               = new InvestmentRegisterRepository(context);
            loanStatus             = new LoanStatusRepository(context);
            schedule               = new LoanScheduleRepository(context);
            balance                = new TrialBalanceRepository(context);
            accountHistory         = new AccountHistoryRepository(context);
            npf_Ledgers            = new LedgerRepositoy(context);
            report                 = new TrialBalanceReportRepository(context);
            history                = new TrialBalanceHistoryRepository(context);
            pf_loandisc            = new LoandiscRepo(context);
            loanPerRank            = new LoanPerRankRepository(context);
            claimregister          = new ClaimRepository(context);
            npfHistories           = new FinancialDocRepo(context);
            trail                  = new AuditRailRepository(context);
            npf_contrdisc          = new ContrRepo(context);
            surplus                = new SurplusRepository(context);
            cam            = new ClaimTypeRepository(context);
            navip          = new NavipRepository(context);
            loantypereview = new LoanTypeReviewRepo(context);
        }
Ejemplo n.º 8
0
 public RankRepo(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 9
0
 public LoanPerRankRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public NPFContributionRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 11
0
 public LoanScheduleRepository(INavyAccountDbContext context)
 {
     this.context = context;
 }
 public RoleMenuRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public FinancialDocRepo(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public SurplusRepository(INavyAccountDbContext context)
 {
     this.context = context;
 }
 public LedgerRepositoy(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public LoanStatusRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public BeneficiaryRepo(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public ClaimTypeRepository(INavyAccountDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 19
0
 public PersonRepo(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 20
0
 public LoanRegisterRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 21
0
 public BalanceSheetRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public RelationshipRepo(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 23
0
 public LoanTypeRepo(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public InvestmentRegisterRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public TrialBalanceRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public AccountHistoryRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public PfFundRateRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
 public SubTypeRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 29
0
 public UserRepository(INavyAccountDbContext context) : base(context)
 {
     this.context = context;
 }
Ejemplo n.º 30
0
 public AuditRailRepository(INavyAccountDbContext context)
 {
     this.context = context;
 }