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);
- /// <summary>
- /// DO NOT MODIFY THIS CLASS, YOU SHOULD CREATE YOUR NEW CLASS WITH DIFFERENT VERSION NUMBER.
- /// modify this class will break the format alignment in Web front end parsing protocal.
- /// </summary>
- 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; }
- }
- }
|