PumpFuelTrxDoneScannerCommunicator.cs 402 B

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