PumpOnFuelingScannerCommunicator.cs 414 B

123456789101112131415161718192021
  1. using System;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace SinoChemFC2PosProxy
  7. {
  8. class PumpOnFuelingScannerCommunicator : ICommunicator
  9. {
  10. public bool IsStarted
  11. {
  12. get { throw new NotImplementedException(); }
  13. }
  14. public bool Start()
  15. {
  16. throw new NotImplementedException();
  17. }
  18. }
  19. }