Beispiel #1
0
 public AddressInfoHandler(Repository repo, ResourceManager lang, TezosDataContext db,
                           TezosBotFacade botClient)
     : base(db, botClient)
 {
     _repo = repo;
     _lang = lang;
 }
Beispiel #2
0
 public AddressTransactionListHandler(
     TezosDataContext db,
     TezosBotFacade botClient,
     ResourceManager lang,
     TokenService tokenService,
     AddressTransactionsRepository transactionsRepository
     )
     : base(db, botClient)
 {
     TokenService           = tokenService;
     TransactionsRepository = transactionsRepository;
     this.lang = lang;
 }
 public ExcludeWhaleCommand(IOptions <BotConfig> config, TezosDataContext db, TezosBotFacade botClient)
     : base(db, botClient)
 {
     Config = config.Value;
 }
Beispiel #4
0
 public LinkPayoutAddressCommand(TezosBotFacade bot, TezosDataContext data)
 {
     this.bot  = bot;
     this.data = data;
 }
 public BaseHandler(TezosDataContext db, TezosBotFacade botClient)
 {
     Db  = db;
     Bot = botClient;
 }
 public SyncPayoutAddressCommand(TezosDataContext dbContext, TezosBotFacade botClient)
 {
     DbContext = dbContext;
     Bot       = botClient;
 }