public Handler(
     MemberBotContext context,
     DiscordSettings config,
     ITcpCommunicationService tcpCommunicationService
     )
 {
     _context = context;
     _config  = config;
     _tcpCommunicationService = tcpCommunicationService;
 }
示例#2
0
 public Handler(MemberBotContext context)
 {
     _context = context;
 }
示例#3
0
 public Handler(MemberBotContext context, DiscordSettings config)
 {
     _context = context;
 }