1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- namespace Global_Pump_Fdc.MessageEntity.Outgoing
- {
-
-
-
-
-
- public class PresetVolumeRequest : FccMessageBase
- {
-
-
-
-
-
-
- public PresetVolumeRequest(int pumpId, byte sitewiseNozzleId, decimal volume)
- {
- var tmp = new Dictionary<string, object>();
- tmp["Command"] = "Authorize";
- tmp["PumpId"] = pumpId;
- tmp["SitewiseNozzleId"] = sitewiseNozzleId;
- tmp["Volume"] = volume;
- base.Parameters = tmp;
- }
- }
- }
|