Пример #1
0
 public OperationRepository(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _configuration = config;
     _context       = bancoVVBAContext;
     //create here an instance of the account service
     _accountService = new AccountService(_context, _configuration);
 }
Пример #2
0
 public CommissionController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _comService = new CommissionService(configuration, bancoVVBAContext);
 }
Пример #3
0
 public AccountRepository(BancoVVBAContext context, IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
Пример #4
0
 public CommissionService(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _comRepository = new CommissionRepository(configuration, bancoVVBAContext);
 }
Пример #5
0
 public CommissionRepository(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _configuration = configuration;
     _context       = bancoVVBAContext;
 }
Пример #6
0
 public UserService(BancoVVBAContext context, IConfiguration configuration)
 {
     _userRespository = new UserRepository(context, configuration);
 }
Пример #7
0
 public AccountController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _accountService = new AccountService(bancoVVBAContext, configuration);
 }
 public AccountCommissionsService(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _accComRepository = new AccountCommissionsRepository(config, bancoVVBAContext);
 }
Пример #9
0
 public UserController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _userService = new UserService(bancoVVBAContext, configuration);
 }
Пример #10
0
 public AccountCommissionsController(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _accComService = new AccountCommissionsService(config, bancoVVBAContext);
 }
Пример #11
0
 public OperationService(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _operRepository = new OperationRepository(configuration, bancoVVBAContext);
 }
Пример #12
0
 public AccountService(BancoVVBAContext context, IConfiguration configuration)
 {
     _accountRespository = new AccountRepository(context, configuration);
     _userRepository     = new UserRepository(context, configuration);
 }
Пример #13
0
 public OperationController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _operService = new OperationService(configuration, bancoVVBAContext);
 }
 public AccountCommissionsRepository(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _config  = config;
     _context = bancoVVBAContext;
 }