using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkFlow; using GxPress.Request.App.Flow; using Datory; namespace GxPress.Repository.Interface.WorkFlow { public interface IFlowMessageRepository : IRepository { Task InsertAsync(FlowMessage item); Task> GetListByFlowIdAsync(int flowId, string type); Task DeleteAllAsync(int flowId); } }