예제 #1
0
 public SqlItemRepository(IFileService fileService, TradingPlatformContext context, IHttpContextAccessor httpContextAccessor, IUserRepository userRepository)
 {
     _fileService         = fileService;
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
     _userRepository      = userRepository;
 }
예제 #2
0
 public SqlCategoryRepository(TradingPlatformContext context)
 {
     _context = context;
 }
 public SqlCountriesRepository(TradingPlatformContext context)
 {
     _context = context;
 }
 public SqlUserRepository(TradingPlatformContext context)
 {
     _context = context;
 }
 public SqlItemRepository(IFileService fileService, TradingPlatformContext context)
 {
     _fileService = fileService;
     _context     = context;
 }
 public SynchroniseCurrencyRate(IServiceRestClient restClient, TradingPlatformContext context)
 {
     _restClient = restClient;
     _context    = context;
 }