1234567891011121314151617181920212223242526272829 |
- using Edge.Core.Processor;using Edge.Core.IndustryStandardInterface.Pump;
- using System.Collections.Generic;
- namespace FspWebApp.Entity.Service
- {
- public delegate bool ChangeFuel(object value);
- public delegate object CommonDelegate(object value);
-
-
-
-
- public class FuelProduct
- {
- public static ChangeFuel onChangeFuelPrice;
- public static ChangeFuel onChangeFuelProduct;
- public static CommonDelegate onGetAuthToken;
- public int Barcode { get; set; }
- public string FuelName { get; set; }
- public double CurrentPrice { get; set; }
- public double? NewPrice { get; set; }
- public HashSet<int> CurrentNozzles { get; set; }
- }
- }
|