12345678910111213141516171819 |
- using Ropin.Inspection.Model;
- using Ropin.Inspection.Service.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Service
- {
- public interface ITprdLogService : IBaseService<TprdLogViewModel>, IBaseServiceById<TprdLogViewModel, Guid>
- {
- Task<IEnumerable<TprdLogViewModel>> GetAllAsync();
- Task<IEnumerable<TprdLogViewModel>> GetByConditionAsync(Expression<Func<TprdLogViewModel, bool>> expression);
- Task UpdateAsync(Guid id, TprdLogUpdateModel updateModel);
- Task<IEnumerable<TprdLogViewModel>> GetConditionAsync(TprdLogSearchModel searchModel);
- }
- }
|