FuelPriceChange.cs 697 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Edge.Core.Database.Models
  7. {
  8. public class FuelPriceChange
  9. {
  10. public int Id { get; set; }
  11. public int PumpId { get; set; }
  12. public int LogicalNozzleId { get; set; }
  13. public int NewPriceWithoutDecimal { get; set; }
  14. public DateTime StartTime { get; set; }
  15. /// <summary>
  16. /// if new price applied succeed to pumps, should fill this value.
  17. /// otherwise, it's Null, indicates the price change is failed to push to pumps.
  18. /// </summary>
  19. public DateTime? FinishTime { get; set; }
  20. }
  21. }