1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.Outgoing
- {
-
-
-
- public class QueryInTankDiagnosticReportRequest : OutgoingMessageBase
- {
-
-
-
-
-
- public QueryInTankDiagnosticReportRequest(MessageFormat messageFormat
- , int tankNumber)
- : base(messageFormat, FuncCode.QueryInTankDiagnosticReport,
- tankNumber.ToString())
- {
- if (tankNumber < 0 || tankNumber > 99) throw new ArgumentOutOfRangeException("Valid tank number is range from 0 to 99");
-
- }
- }
- }
|