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 ITispRegionService : IBaseService, IBaseServiceById { Task> GetAllAsync(); Task> GetByConditionAsync(Expression> expression); Task UpdateAsync(Guid id, TispRegionUpdateViewModel updateModel); Task> GetRegionsConditionAsync(TispRegionSearchModel searchModel); } }