public StartupCheckingService( IMicroBus bus, TelegramConfig telegramConfig, TelegramBot bot, GeneralConfig config, LiteDbDatabaseService liteDbDatabaseService, CryptoGramBotDbContext context ) { _bus = bus; _telegramConfig = telegramConfig; _bot = bot; _config = config; _liteDbDatabaseService = liteDbDatabaseService; _context = context; }
public DatabaseService(ILogger <DatabaseService> log, CryptoGramBotDbContext context) { _log = log; _context = context; }
public DatabaseService(ILogger <DatabaseService> log, CryptoGramBotDbContext context, GeneralConfig config) { _log = log; _context = context; _config = config; }