Exemplo n.º 1
0
 public GetBknApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 2
0
 public SetBanAllGroupMembersOptionApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 3
0
 public LeaveDiscussApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 4
0
 public SendGroupJoiningInvitationApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 5
0
 public SetNoticeApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 6
0
 public JoinGroupApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 7
0
 public SendGroupMessageApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
 public RejectFriendAddingRequestApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 9
0
 public RemoveBanFriendApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 10
0
 public GetGroupMemebersApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 11
0
 public RejectGroupJoiningInvitationApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 12
0
 public KickDiscussMemberApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 13
0
 public SendPrivateMessageApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 14
0
 public DissolveGroupApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 15
0
 public RemoveBanGroupMemberApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
Exemplo n.º 16
0
 public SetBanAllGroupMembersOptionApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, qqSession, eventFunOutput)
 {
 }
Exemplo n.º 17
0
 public GetGroupMemebersWithModelApiMahuaCommandHandler(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
     : base(mpqApi, robotSessionContext, eventFunOutput)
 {
 }
 public EventFunCommandHandler(
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput,
     IIndex <int, IEventFun> eventFuncHandlers)
 {
     _robotSessionContext = robotSessionContext;
     _eventFunOutput      = eventFunOutput;
     _eventFuncHandlers   = eventFuncHandlers;
 }
Exemplo n.º 19
0
 public MahuaApi(
     IMpqApi mpqApi,
     IQqSession qqSession,
     IEventFunOutput eventFunOutput)
 {
     _mpqApi         = mpqApi;
     _qqSession      = qqSession;
     _eventFunOutput = eventFunOutput;
 }
Exemplo n.º 20
0
 public EventFunCommandHandler(
     IQqSession qqSession,
     IEventFunOutput eventFunOutput,
     IIndex <int, IEventFun> eventFuncHandlers)
 {
     _qqSession         = qqSession;
     _eventFunOutput    = eventFunOutput;
     _eventFuncHandlers = eventFuncHandlers;
 }
Exemplo n.º 21
0
 protected MpqApiMahuaCommandHandlerBase(
     IMpqApi mpqApi,
     IRobotSessionContext robotSessionContext,
     IEventFunOutput eventFunOutput)
 {
     this._robotSessionContext = robotSessionContext;
     this._eventFunOutput      = eventFunOutput;
     this.MpqApi = mpqApi;
 }