public MemberCommands(SystemStore systems, MemberStore members, EmbedService embeds, ProxyCacheService proxyCache) { _systems = systems; _members = members; _embeds = embeds; _proxyCache = proxyCache; }
public SystemCommands(SystemStore systems, MemberStore members, SwitchStore switches, EmbedService embeds, ProxyCacheService proxyCache) { _systems = systems; _members = members; _switches = switches; _embeds = embeds; _proxyCache = proxyCache; }
public MemberCommands(IDataStore data, EmbedService embeds, ProxyCacheService proxyCache) { _data = data; _embeds = embeds; _proxyCache = proxyCache; }
public SystemCommands(EmbedService embeds, ProxyCacheService proxyCache, IDataStore data) { _embeds = embeds; _proxyCache = proxyCache; _data = data; }