예제 #1
0
 public MemberCommands(SystemStore systems, MemberStore members, EmbedService embeds, ProxyCacheService proxyCache)
 {
     _systems    = systems;
     _members    = members;
     _embeds     = embeds;
     _proxyCache = proxyCache;
 }
예제 #2
0
 public SystemCommands(SystemStore systems, MemberStore members, SwitchStore switches, EmbedService embeds, ProxyCacheService proxyCache)
 {
     _systems    = systems;
     _members    = members;
     _switches   = switches;
     _embeds     = embeds;
     _proxyCache = proxyCache;
 }
예제 #3
0
 public MemberCommands(IDataStore data, EmbedService embeds, ProxyCacheService proxyCache)
 {
     _data       = data;
     _embeds     = embeds;
     _proxyCache = proxyCache;
 }
예제 #4
0
 public SystemCommands(EmbedService embeds, ProxyCacheService proxyCache, IDataStore data)
 {
     _embeds     = embeds;
     _proxyCache = proxyCache;
     _data       = data;
 }