using Ropin.Inspection.Model.SearchModel; using Ropin.Inspection.Model.ViewModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.Interface { public interface ITispContentGroupService : IBaseService, IBaseServiceById { Task> GetContentGroupsAsync(TispContentGroupsSearchModel searchModel); Task> GetAllAsync(); //Task> GetByConditionAsync(Expression> expression); Task UpdateAsync(Guid id, TispContentUpdateGroupViewModel updateModel); //Task> GetContentsConditionAsync(TispContentSearchModel searchModel); } }