using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkFlow; using GxPress.Request.App.Flow; using Datory; using GxPress.Entity.WorkMeeting; namespace GxPress.Repository.Interface.WorkMeeting { public interface IMeetingLocationRepository : IRepository { Task InsertAsync(MeetingLocation item); Task UpdateAsync(MeetingLocation item); Task> GetListAsync(); Task DeleteAsync(int locationId); Task GetAddress(int locationId); } }