ISeatStateDataService.cs 459 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Hotline.Application.Bigscreen
  7. {
  8. public interface ISeatStateDataService
  9. {
  10. Task<object> GetCall24(CancellationToken stoppingToken);
  11. Task<object> GetCallTop10(CancellationToken stoppingToken);
  12. Task<object> GetCallList(CancellationToken stoppingToken);
  13. Task<object> GetCallAverage(CancellationToken stoppingToken);
  14. }
  15. }