public GetCookiesApiMahuaCommandHandler(
     ICleverQqApi cleverQqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverQqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 2
0
 public AcceptFriendAddingRequestApiMahuaCommandHandler(
     ICleverQqApi cleverqqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverqqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 3
0
 public SendPrivateMessageApiMahuaCommandHandler(
     ICleverQqApi cleverqqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverqqApi, robotSessionContext, eventFunOutput)
 {
 }
 public GetGroupMemebersWithModelApiMahuaCommandHandler(
     ICleverQqApi cleverQqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverQqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 5
0
 public BanGroupMemberApiMahuaCommandHandler(
     ICleverQqApi cleverqqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverqqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 6
0
 public RejectGroupJoiningInvitationApiMahuaCommandHandler(
     ICleverQqApi cleverqqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverqqApi, robotSessionContext, eventFunOutput)
 {
 }
 public RemoveFriendApiMahuaCommandHandler(
     ICleverQqApi cleverqqApi,
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput)
     : base(cleverqqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 8
0
 public EventFunCommandHandler(
     IRobotSessionContext robotSessionContext,
     IIrEventOutput eventFunOutput,
     IIndex <int, IIrEvent> eventFuncHandlers)
 {
     _robotSessionContext = robotSessionContext;
     _eventFunOutput      = eventFunOutput;
     _eventFuncHandlers   = eventFuncHandlers;
 }