Exemplo n.º 1
0
 public LoanOperationsController(ILoanOperationsRepository repo, IIdentityService identityService, ILoggerService logger, IInvestorFundService invest, IHttpContextAccessor httpContextAccessor, DataContext context, ILoanScheduleRepository schedule, IIdentityServerRequest identityServer)
 {
     _repo                = repo;
     _identityService     = identityService;
     _logger              = logger;
     _httpContextAccessor = httpContextAccessor;
     _context             = context;
     _schedule            = schedule;
     _identityServer      = identityServer;
     _invest              = invest;
 }
Exemplo n.º 2
0
 public InvestorFund(IInvestorFundService investorFundService)
     : this()
 {
     this.InvestorFundService = investorFundService;
 }