public SqlItemRepository(IFileService fileService, TradingPlatformContext context, IHttpContextAccessor httpContextAccessor, IUserRepository userRepository) { _fileService = fileService; _context = context; _httpContextAccessor = httpContextAccessor; _userRepository = userRepository; }
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; }