using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JiShe.CollectBus.EnergySystem.Dto; namespace JiShe.CollectBus.EnergySystem { public class EnergySystemAppService: CollectBusAppService,IEnergySystemAppService { public Task> ValveControl(ValveControlInput input) { throw new NotImplementedException(); } public Task> ReadTime(ReadTimeInput input) { throw new NotImplementedException(); } public Task> AmmeterArchivesDown(AmmeterArchivesDownInput input) { throw new NotImplementedException(); } public Task AmmeterArchivesMatch(AmmeterArchivesMatchInput input) { throw new NotImplementedException(); } public Task CommunicationParametersSet(CommunicationParametersSetInput input) { throw new NotImplementedException(); } public Task CallTimeTesting(CallTimeTestingInput input) { throw new NotImplementedException(); } public Task TimeAdjust(TimeAdjustInput input) { throw new NotImplementedException(); } public Task TerminalRestart(TerminalRestartInput input) { throw new NotImplementedException(); } public Task> ReadMeterNum(ReadMeterNumInput input) { throw new NotImplementedException(); } public Task> Reading(ReadingInput input) { throw new NotImplementedException(); } public Task TimeSet(TimeSetInput input) { throw new NotImplementedException(); } public Task AutoReportCollectionItemsSet(AutoReportCollectionItemsSetInput input) { throw new NotImplementedException(); } public Task AutoReportSet(AutoReportSetInput input) { throw new NotImplementedException(); } public Task QueryAutoReportOpenStatus(QueryAutoReportOpenStatusInput input) { throw new NotImplementedException(); } public Task> BatchReadVersion(BatchReadVersionInput input) { throw new NotImplementedException(); } public Task> QueryRecordLog(QueryRecordLogInput input) { throw new NotImplementedException(); } public Task AdjustMeterTiming(AdjustMeterTimingInput input) { throw new NotImplementedException(); } } }