1234567891011121314151617 |
- using WingServerCommon.Service;
- using WingInterfaceLibrary.Interface.DBInterface;
- using WingInterfaceLibrary.LiveConsultation;
- using WingInterfaceLibrary.Interface;
- namespace WingCloudServer.InteractionCenter
- {
- public class InteractionCenterService : JsonRpcService
- {
- protected IOpLogDBService _opLogDBService;
- protected ILiveRoomDBService _liveRoomDBService;
- protected IDistributedServerInfoDBService _distributedServerInfoDBService;
- protected ILiveConsultationService _liveConsultationService;
- protected INotificationService _notificationService;
- }
- }
|