IMeetingService.cs 696 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using GxPress.Request.App.WorkMeeting;
  3. namespace GxPress.Service.Interface.Meeting
  4. {
  5. public interface IMeetingService : IService
  6. {
  7. /// <summary>
  8. /// 返回相邻的
  9. /// </summary>
  10. /// <param name="nums"></param>
  11. /// <returns></returns>
  12. Dictionary<int, List<int>> GetDictionary(List<int> nums);
  13. /// <summary>
  14. /// 获取会议的订阅时间
  15. /// </summary>
  16. /// <param name="orderList"></param>
  17. /// <returns></returns>
  18. Dictionary<List<TimeDictionary>, List<MeetingTime>> GetMeetingTimeDictionary(IEnumerable<Entity.WorkMeeting.MeetingOrder> orderList);
  19. }
  20. }