123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using Ropin.Inspection.Model;
- using Ropin.Inspection.Model.Entities;
- using Ropin.Inspection.Model.SearchModel.MTN;
- using Ropin.Inspection.Model.ViewModel.DEV;
- using Ropin.Inspection.Model.ViewModel.MTN;
- using Ropin.Inspection.Service.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Claims;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Service.MTN.Interface
- {
-
-
-
- public interface ITmtnAlarmOrderService : IBaseService<AlarmOrderViewModel>, IBaseServiceById<AlarmOrderViewModel, string>
- {
-
-
-
-
-
-
- Task<TMTN_AlarmOrder> CreateOrderAsync(AddAlarmOrderViewModel viewModel);
-
-
-
-
-
-
-
- Task UpdateAsync(string code, AlarmOrderViewModel updateModel);
-
-
-
-
-
-
-
- Task OrderFlowAsync(string code, UpdateAlarmOrderViewModel updateModel);
-
-
-
-
-
- Task<IEnumerable<AlarmOrderViewModel>> GetAlarmOrderList(AlarmOrderSearchModel searchModel);
-
-
-
-
-
- Task<RepairStatistics> GetAlarmOrderStatisticsAsync(string storeCode);
-
-
-
-
-
- Task<IEnumerable<AlarmOrderRecordViewModel>> GetAlarmOrderRecordList(AlarmOrderSearchModel searchModel);
-
-
-
-
-
- Task<IEnumerable<AlarmOrderFile>> GetAlarmOrderRecordAppList(string RecordId);
-
-
-
-
-
- Task<AlarmOrderStatistics> AlarmOrderStatistics(AlarmOrderSearchModel searchModel);
-
-
-
-
-
- Task<AlarmOrderViewModel> GetByMessageCodeAsync(string messageCode);
- }
- }
|