using System;
using System.Collections.Generic;
using System.Text;
namespace Wayne.ForecourtControl
{
///
/// Pump state
///
[System.Runtime.InteropServices.ComVisible(true)]
public enum PumpState
{
///
/// Pump is closed.
///
Closed,
///
/// Pump is inoperative
///
Inoperative,
///
/// Pump is Idle
///
Idle,
///
/// Pump is Calling for authorization
///
Calling,
///
/// Pump is authorised and ready to begin fuelling.
///
Authorized,
///
/// Pump is fuelling
///
Fuelling,
///
/// pump is Suspended
///
Suspended,
///
/// Waiting for consent
///
WaitingForConsent,
///
/// Unknown state
///
Unknown,
///
/// Error state
///
Error,
///
/// Fueling started
///
Starting,
///
/// Stopped state shown on FCM
///
Stopped
}
}