IMeetingLocationRepository.cs 565 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Entity.WorkFlow;
  4. using GxPress.Request.App.Flow;
  5. using Datory;
  6. using GxPress.Entity.WorkMeeting;
  7. namespace GxPress.Repository.Interface.WorkMeeting
  8. {
  9. public interface IMeetingLocationRepository : IRepository
  10. {
  11. Task<int> InsertAsync(MeetingLocation item);
  12. Task UpdateAsync(MeetingLocation item);
  13. Task<IEnumerable<MeetingLocation>> GetListAsync();
  14. Task<bool> DeleteAsync(int locationId);
  15. Task<string> GetAddress(int locationId);
  16. }
  17. }