Terminal.cs 530 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using Terminal;
  2. using DatabaseDLL;
  3. using System.Collections.Generic;
  4. namespace Terminal
  5. {
  6. public class Terminal : ITerminalDisplay
  7. {
  8. private int terminalID;
  9. private Terminal terminal;
  10. public void FeeCal()
  11. {
  12. }
  13. public void GetTerminalState()
  14. {
  15. }
  16. public List<object> GetParkingRecords()
  17. {
  18. return null;
  19. }
  20. public List<object> GetOrderRecords()
  21. {
  22. return null;
  23. }
  24. private object SearchPaymentScheme()
  25. {
  26. return null;
  27. }
  28. private void UpdateParkingRecords(int Object)
  29. {
  30. }
  31. }
  32. }