Ejemplo n.º 1
0
 public CommandHandling(CommandService commands,
                        DiscordShardedClient client, UserAccounts accounts, ServerAccounts serverAccounts, CommandsInMemory commandsInMemory,
                        Scope scope, LoginFromConsole log, Global global)
 {
     _commands         = commands;
     _services         = scope;
     _log              = log;
     _global           = global;
     _client           = client;
     _accounts         = accounts;
     _serverAccounts   = serverAccounts;
     _commandsInMemory = commandsInMemory;
 }
Ejemplo n.º 2
0
        public General(ILocalization lang, UserAccounts accounts, SecureRandom secureRandom, OctoPicPull octoPicPull, OctoNamePull octoNmaNamePull, HelperFunctions helperFunctions, AudioService service, CommandsInMemory commandsInMemory, Global global)
        {
            _lang     = lang;
            _accounts = accounts;

            _secureRandom     = secureRandom;
            _octoPicPull      = octoPicPull;
            _octoNmaNamePull  = octoNmaNamePull;
            _helperFunctions  = helperFunctions;
            _service          = service;
            _commandsInMemory = commandsInMemory;
            _global           = global;
        }
Ejemplo n.º 3
0
 public General(UserAccounts accounts, CommandsInMemory commandsInMemory, Global global)
 {
     _accounts         = accounts;
     _commandsInMemory = commandsInMemory;
     _global           = global;
 }