Exemple #1
0
 public AccountsController(IAccountsRepo repository, IConfiguration configuration, IMapper mapper, IWebHostEnvironment env, IUserService userService)
 {
     _configuration = configuration;
     _repository    = repository;
     _mapper        = mapper;
     _env           = env;
     _userService   = userService;
 }
 public AuthController(IUserService userService, IAccountsRepo repo, IConfiguration configuration, IMapper mapper, IAuthenticationRepos authRepo)
 {
     _userService   = userService;
     _accRepo       = repo;
     _configuration = configuration;
     _mapper        = mapper;
     _authRepo      = authRepo;
 }
 public GetTransactionsReport(IAccountsRepo accountsRepo, ITransactionsRepo transactionsRepo, IDateTimeProxy dateTimeProxy)
 {
     _accountsRepo     = accountsRepo;
     _transactionsRepo = transactionsRepo;
     _dateTimeProxy    = dateTimeProxy;
 }
Exemple #4
0
 public AccountsService(IAccountsRepo accountsRepo)
 {
     _accountsRepo = accountsRepo;
 }
Exemple #5
0
 public AccountsController(IAccountsRepo accountsRepo)
 {
     _accountsRepo = accountsRepo;
 }
Exemple #6
0
 public AccountController(IAccountsRepo accountRepo)
 {
     this.repo = accountRepo;
 }
Exemple #7
0
 public AccountsBBL(IConfiguration configuration, IAccountsRepo accountsRepo)
 {
     _configuration = configuration;
     _accountsRepo  = accountsRepo;
 }