using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity; using Datory; namespace GxPress.Repository.Interface { /// /// 抄送人 /// public interface ICcRepository : IRepository { /// /// 根据通知ID获取抄送人 /// /// /// Task> GetNoticeCcByNoticeIdAsync(int noticeId,int sourceType); Task DeleteAsync(int sourceId, int sourceType); Task InsertAsync(Cc noticeCc); /// /// 添加通知抄送人 /// /// /// Task InsertAsync(List noticeCcs); } }