Ejemplo n.º 1
0
 public MpqMahuaApiHandler(
     IMahuaCenter mahuaCenter,
     IMpqApi mpqApi)
 {
     _mahuaCenter = mahuaCenter;
     _mpqApi      = mpqApi;
 }
 public MahuaWebsocketClient(
     WebSocket webSocket,
     IMahuaCenter mahuaCenter)
 {
     _mahuaCenter = mahuaCenter;
     _webSocket   = webSocket;
 }
 public MahuaMiddleware(
     IMahuaWebsocketClientManager mahuaWebsocketClientManager,
     IMahuaCenter mahuaCenter)
 {
     _mahuaWebsocketClientManager = mahuaWebsocketClientManager;
     _mahuaCenter = mahuaCenter;
 }
 public QQLightMahuaApiHandler(
     IMahuaCenter mahuaCenter,
     IQQLightApi qQLightApi,
     IQqLightAuthCodeContainer qqLightAuthCodeContainer)
 {
     _mahuaCenter = mahuaCenter;
     _qQLightApi  = qQLightApi;
     _qqLightAuthCodeContainer = qqLightAuthCodeContainer;
 }
 public CqpMahuaApiHandler(
     IMahuaCenter mahuaCenter,
     ICqpApi cqpApi,
     ICqpAuthCodeContainer cqpAuthCodeContainer)
 {
     _mahuaCenter          = mahuaCenter;
     _cqpApi               = cqpApi;
     _cqpAuthCodeContainer = cqpAuthCodeContainer;
 }
 public MahuaApiController(
     IMahuaCenter mahuaCenter)
 {
     _mahuaCenter = mahuaCenter;
 }
Ejemplo n.º 7
0
 public CqpController(
     IMahuaCenter mahuaCenter)
 {
     _mahuaCenter = mahuaCenter;
 }
Ejemplo n.º 8
0
 public QQLightController(
     IMahuaCenter mahuaCenter)
 {
     _mahuaCenter = mahuaCenter;
 }