using Ropin.Inspection.Model.SearchModel;
using Ropin.Inspection.Model.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace Ropin.Inspection.Service.Interface
{
///
/// 巡检内容接口
///
public interface ITispContentService : IBaseService, IBaseServiceById
{
Task> GetAllAsync(string storeCode);
Task> GetByConditionAsync(Expression> expression);
Task UpdateAsync(Guid id, TispContentUpdateViewModel updateModel);
Task> GetContentsConditionAsync(TispContentSearchModel searchModel);
}
}