Example #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);
 }
Example #2
0
 public CommissionController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _comService = new CommissionService(configuration, bancoVVBAContext);
 }
Example #3
0
 public AccountRepository(BancoVVBAContext context, IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
Example #4
0
 public CommissionService(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _comRepository = new CommissionRepository(configuration, bancoVVBAContext);
 }
 public CommissionRepository(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _configuration = configuration;
     _context       = bancoVVBAContext;
 }
Example #6
0
 public UserService(BancoVVBAContext context, IConfiguration configuration)
 {
     _userRespository = new UserRepository(context, configuration);
 }
Example #7
0
 public AccountController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _accountService = new AccountService(bancoVVBAContext, configuration);
 }
 public AccountCommissionsService(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _accComRepository = new AccountCommissionsRepository(config, bancoVVBAContext);
 }
Example #9
0
 public UserController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _userService = new UserService(bancoVVBAContext, configuration);
 }
Example #10
0
 public AccountCommissionsController(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _accComService = new AccountCommissionsService(config, bancoVVBAContext);
 }
Example #11
0
 public OperationService(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _operRepository = new OperationRepository(configuration, bancoVVBAContext);
 }
Example #12
0
 public AccountService(BancoVVBAContext context, IConfiguration configuration)
 {
     _accountRespository = new AccountRepository(context, configuration);
     _userRepository     = new UserRepository(context, configuration);
 }
Example #13
0
 public OperationController(IConfiguration configuration, BancoVVBAContext bancoVVBAContext)
 {
     _operService = new OperationService(configuration, bancoVVBAContext);
 }
 public AccountCommissionsRepository(IConfiguration config, BancoVVBAContext bancoVVBAContext)
 {
     _config  = config;
     _context = bancoVVBAContext;
 }