12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace Global_Pump_Fdc.MessageEntity.Outgoing
- {
-
-
-
-
-
- public class PriceUpdateRequest : FccMessageBase
- {
- public PriceUpdateRequest(int fuelGrade, double newFuelPrice)
- {
- var tmp = new Dictionary<string, object>();
- tmp["Command"] = "PriceUpdate";
- tmp["FuelGrade"] = fuelGrade;
- tmp["NewFuelPrice"] = newFuelPrice;
- base.Parameters = tmp;
- }
- }
- }
|