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 ITispSpotRegionService : IBaseService, IBaseServiceById { Task> GetByConditionAsync(Expression> expression); Task> GetSpotRegionsAsyncByPage(TispSpotRegionSearchModel searchViewModel); Task> GetSpotsRegionAsyncByPage(TispSpotRegionSearchModel searchViewModel); Task UpdateAsync(Guid id, TispContentUpdateViewModel updateModel); Task CreateSpotsRegionsAsync(TispSpotRegionCreateViewModel viewModel); } }