using Hotline.CallCenter.Calls; using Hotline.Share.Enums.Order; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XF.Domain.Repository; namespace Hotline.Repository.SqlSugar.CallCenter; public interface ICallNativeRepository : IRepository { Task UpdateReplyTxtAsync(string callId, string replyTxt); }