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);
///
/// 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.
///
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 CurrentNozzles { get; set; }
}
}