using System.Threading.Tasks; using Datory; using GxPress.Common.Page; using GxPress.Request.TrackLog; namespace GxPress.Repository.Interface.TrackLog { public interface ITrackLogRepository : IRepository { Task> GetAllAsync(TrackLogSearchRequest request); Task InsertAsync(Entity.tede2.TrackLog.TrackLog model); Task InsertAsync(string creator, int adminId, string ip, string remark); } }