using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkProcess; using Datory; namespace GxPress.Repository.Interface.WorkProcess { public interface IRuleCarbonCopyRepository : IRepository { Task InsertAsync(RuleCarbonCopy rule); Task> GetListAsync(int nodeId); Task DeleteByNodeIdListAsync(IEnumerable nodeIdList); } }