12345678910111213141516171819202122232425262728293031323334 |
- using Ropin.Inspection.Model;
- using Ropin.Inspection.Model.Entities;
- using Ropin.Inspection.Model.SearchModel.MTN;
- using Ropin.Inspection.Model.ViewModel.MTN;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Repository.MTN.Interface
- {
-
-
-
- public interface ITmtnAlarmOrderRepository : IRepositoryBase<TMTN_AlarmOrder>, IRepositoryBaseById<TMTN_AlarmOrder, string>
- {
- Task<IEnumerable<AlarmOrderViewModel>> GetAlarmOrderList(AlarmOrderSearchModel searchModel);
- Task<RepairStatistics> GetAlarmOrderStatisticsAsync(string storeCode);
- }
-
-
-
- public interface ITmtnAlarmOrderRecordRepository : IRepositoryBase<TMTN_AlarmHandleRecord>, IRepositoryBaseById<TMTN_AlarmHandleRecord, string>
- {
- Task<IEnumerable<AlarmOrderRecordViewModel>> GetAlarmOrderRecordList(AlarmOrderSearchModel searchModel);
- }
-
-
-
- public interface ITmtnAlarmOrderRecordAppRepository : IRepositoryBase<TMTN_AlarmHandleRecordApp>, IRepositoryBaseById<TMTN_AlarmHandleRecordApp, string>
- {
- }
- }
|