1234567891011121314151617181920 |
- using System.Runtime.InteropServices;
- namespace Wayne.ForecourtControl
- {
-
-
-
- [ComVisible(true)]
- public interface ITankReadingEx: ITankReading
- {
-
-
-
- decimal FuelVolume { [return: MarshalAs(UnmanagedType.Currency)]get; }
-
-
-
- decimal WaterVolume { [return: MarshalAs(UnmanagedType.Currency)]get; }
- }
- }
|