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