123456789101112131415161718192021222324252627282930313233 |
- 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;
- using Ropin.Inspection.Model.ViewModel;
- using Ropin.Inspection.Model.Entities;
- namespace Ropin.Inspection.Service
- {
- public interface ITmtnDevOpsService : IBaseService<TmtnDevOpsViewModel>, IBaseServiceById<TmtnDevOpsViewModel, Guid>
- {
- Task<IEnumerable<TmtnDevOpsViewModel>> GetAllAsync();
- Task<TMTN_DevOps> GetByIdAsync(string id);
- Task<IEnumerable<TmtnDevOpsViewModel>> GetByConditionAsync(Expression<Func<TmtnDevOpsViewModel, bool>> expression);
- Task UpdateAsync(string code, TmtnDevOpsUpdateModel updateModel);
- Task<IEnumerable<TmtnDevOpsViewModel>> GetConditionAsync(TmtnDevOpsSearchModel searchModel);
- Task DeleteAsync(string code);
- Task<TMTN_DevOps> CreateDevOpsAsync(TmtnDevOpsViewModel content);
- Task<IEnumerable<TmtnDevOpsWithImageViewModel>> GetDevOpsWithImageAsync(TmtnDevOpsOrderSearchModel searchModel);
- Task<TispRecord30DaysStatisticsViewModel> GetRecords30DaysStatisticsAsync(string storeCode);
- Task<IEnumerable<FullScreenRecordItem>> GetRecords30DaysStatisticsFullScreenAsync(string storeCode);
- Task<IEnumerable<DevOpsFullScreenRecord>> GetDevOpsFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel);
- Task<IEnumerable<DevOpsFullScreenRecord>> GetDevRepairFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel);
- Task<RepairStatistics> GetDevOpsCountFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel);
- Task<RepairStatistics> GetDevRepairCountFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel);
- Task<IEnumerable<DevOpsFullScreenRecord>> GetISPRecordAsync(DevOpsItemSearchModel searchModel);
- }
- }
|