InteractionCenterService.cs 607 B

1234567891011121314151617
  1. using WingServerCommon.Service;
  2. using WingInterfaceLibrary.Interface.DBInterface;
  3. using WingInterfaceLibrary.LiveConsultation;
  4. using WingInterfaceLibrary.Interface;
  5. namespace WingCloudServer.InteractionCenter
  6. {
  7. public class InteractionCenterService : JsonRpcService
  8. {
  9. protected IOpLogDBService _opLogDBService;
  10. protected ILiveRoomDBService _liveRoomDBService;
  11. protected IDistributedServerInfoDBService _distributedServerInfoDBService;
  12. protected ILiveConsultationService _liveConsultationService;
  13. protected INotificationService _notificationService;
  14. }
  15. }