PumpOnFuelingScannerCommunicator.cs 332 B

1234567891011121314151617
  1. using System;
  2. namespace SinochemInternetPlusApp
  3. {
  4. class PumpOnFuelingScannerCommunicator : ICommunicator
  5. {
  6. public bool IsStarted
  7. {
  8. get { throw new NotImplementedException(); }
  9. }
  10. public bool Start()
  11. {
  12. throw new NotImplementedException();
  13. }
  14. }
  15. }