IMeetingSummaryRepository.cs 890 B

123456789101112131415161718192021222324252627
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Entity.WorkMeeting;
  5. using GxPress.Request.App.WorkMeeting;
  6. namespace GxPress.Repository.Interface.WorkMeeting
  7. {
  8. public interface IMeetingSummaryRepository : IRepository
  9. {
  10. Task<int> InsertAsync(MeetingSummary item);
  11. Task UpdateAsync(MeetingSummary item);
  12. Task<IEnumerable<MeetingSummary>> GetListAsync(string keyword,int userId,int typeId,int meetingId,int page=1,int perPage=10);
  13. Task<MeetingSummary> GetAsync(int id);
  14. Task<bool> DeleteAsync(int summaryId);
  15. Task DeleteByRoomIdAsync(int roomId);
  16. Task<MeetingSummary> GetAsync(SqlKata.Query query);
  17. Task<IEnumerable<MeetingSummaryResult>> GetListMeetingSummaryResultAsync(string keyword, int userId, int typeId, int meetingId, int page = 1, int perPage = 10);
  18. }
  19. }