using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkFlow; using Datory; namespace GxPress.Repository.Interface.WorkFlow { public interface IFlowCarbonCopyRepository : IRepository { Task InsertAsync(FlowCarbonCopy item); Task> GetListAsync(int flowId); Task DeleteAllAsync(int flowId); } }