12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace Global_Pump_Fdc.MessageEntity.Outgoing
- {
- /// <summary>
- /// NOZ1-n specifies the logical nozzle numbers that is allowed for filling.
- /// The transaction is used when a pump is authorized.
- /// E.g. if nozzle 1-3 is allowed, the transaction contains 1, 2, 3.
- /// </summary>
- public class QueryTotalizerRequest : FccMessageBase
- {
- public QueryTotalizerRequest(int pumpId, byte logicalNozzleId)
- {
- var tmp = new Dictionary<string, object>();
- tmp["Command"] = "QueryTotalizer";
- tmp["PumpId"] = pumpId;
- tmp["LogicalNozzleId"] = logicalNozzleId;
- base.Parameters = tmp;
- }
- }
- }
|