IAddresseeRepository.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Entity;
  4. using Datory;
  5. using GxPress.Request.Notice;
  6. using GxPress.Result.Notice;
  7. using SqlKata;
  8. using GxPress.Result.App.Missive;
  9. using GxPress.Request.App.Missive;
  10. namespace GxPress.Repository.Interface
  11. {
  12. /// <summary>
  13. /// 收件人
  14. /// </summary>
  15. public interface IAddresseeRepository : IRepository
  16. {
  17. /// <summary>
  18. /// 根据通知ID获取抄送人
  19. /// </summary>
  20. /// <param name="noticeId"></param>
  21. /// <returns></returns>
  22. Task<IEnumerable<Addressee>> GetNoticeAddresseeByNoticeIdAsync(int noticeId);
  23. Task<bool> DeleteAsync(int noticeId, int sourceType, int isAdmin);
  24. Task<int> InsertAsync(Addressee noticeAddressee);
  25. /// <summary>
  26. /// 插入收件人
  27. /// </summary>
  28. /// <param name="noticeAddressees"></param>
  29. /// <returns></returns>
  30. Task<bool> InsertAsync(List<Addressee> noticeAddressees);
  31. Task<IEnumerable<NoticeReadListResult>> GetNoticeAddresseeByUserIdIdAsync(NoticeReadListRequest request);
  32. Task<int> CountAsync(SqlKata.Query query);
  33. Task<IEnumerable<Addressee>> GetAllAsync(SqlKata.Query query);
  34. Task<bool> UpdateAsync(SqlKata.Query query);
  35. /// <summary>
  36. /// 获取收件人
  37. /// </summary>
  38. /// <param name="noticeId"></param>
  39. /// <returns></returns>
  40. Task<IEnumerable<User>> GetUserByNoticeIdAsync(int noticeId);
  41. Task<bool> ExistsAsync(Query query);
  42. Task<IEnumerable<MissiveReadListResult>> GetMissiveReadListAsync(MissiveReadListRequest request);
  43. }
  44. }