using Cowain.Base.IServices; using Cowain.Base.Models; using Plugin.Cowain.Wcs.ViewModels; namespace Plugin.Cowain.Wcs.IServices; public interface IProcessFlow6180Service : IBaseService { Task> GetAllAsync(); Task<(List, int totals)> GetAllAsync(int pageIndex, int pageSize); Task<(List, int totals)> GetAllAsync(int pageIndex, int pageSize, int? processId); Task AddAsync(int processId, List flows); Task UpdateAsync(int processId, List flows); Task DeleteAsync(int processId); }