1234567891011121314151617 |
- using System;
- namespace SinochemInternetPlusApp
- {
- class PumpOnFuelingScannerCommunicator : ICommunicator
- {
- public bool IsStarted
- {
- get { throw new NotImplementedException(); }
- }
- public bool Start()
- {
- throw new NotImplementedException();
- }
- }
- }
|