コード例 #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
ファイル: MemberCommands.cs プロジェクト: jamessys/PluralKit
 public MemberCommands(IDataStore data, EmbedService embeds, ProxyCacheService proxyCache)
 {
     _data       = data;
     _embeds     = embeds;
     _proxyCache = proxyCache;
 }
コード例 #4
0
ファイル: SystemCommands.cs プロジェクト: kodiissad/PluralKit
 public SystemCommands(EmbedService embeds, ProxyCacheService proxyCache, IDataStore data)
 {
     _embeds     = embeds;
     _proxyCache = proxyCache;
     _data       = data;
 }