123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System;
- using System.Runtime.InteropServices;
- namespace Wayne.ForecourtControl
- {
-
-
-
- [ComVisible(true)]
- public class FuelDeliveryEventArgs : EventArgs, Com.IFuelDeliveryEventArgs
- {
- #region Fields
- FuelDeliveryType type;
- int tankGroupId;
- DateTime startDateTime;
- DateTime endDateTime;
- decimal quantity;
- decimal plannedQuantity;
- decimal truckFuelTemperature;
- string sourcePlantInfo;
- string referenceNote;
- #endregion
- #region Construction
-
-
-
-
-
-
-
-
-
-
-
-
- public FuelDeliveryEventArgs(FuelDeliveryType type, int tankGroupId, DateTime startDateTime, DateTime endDateTime,
- decimal quantity, decimal plannedQuantity, decimal truckFuelTemperature,
- string sourcePlantInfo, string referenceNote)
- {
- this.type = type;
- this.tankGroupId = tankGroupId;
- this.startDateTime = startDateTime;
- this.endDateTime = endDateTime;
- this.quantity = quantity;
- this.plannedQuantity = plannedQuantity;
- this.truckFuelTemperature = truckFuelTemperature;
- this.sourcePlantInfo = sourcePlantInfo;
- this.referenceNote = referenceNote;
- }
- #endregion
- #region IFuelDeliveryEevntArgs Members
-
-
-
-
- public FuelDeliveryType Type
- {
- get { return type; }
- }
-
-
-
- public int TankGroupId
- {
- get { return tankGroupId; }
- }
-
-
-
- public DateTime StartDateTime
- {
- get { return startDateTime; }
- }
-
-
-
- public DateTime EndDateTime
- {
- get { return endDateTime; }
- }
-
-
-
- public decimal Quantity
- {
- get { return quantity; }
- }
-
-
-
- public decimal PlannedQuantity
- {
- get { return plannedQuantity; }
- }
-
-
-
- public decimal TruckFuelTemperature
- {
- get { return truckFuelTemperature; }
- }
-
-
-
- public string SourcePlantInfo
- {
- get { return sourcePlantInfo; }
- }
-
-
-
- public string ReferenceNote
- {
- get { return referenceNote; }
- }
- #endregion
- }
- }
|