12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using Terminal;
- using DatabaseDLL;
- using System.Collections.Generic;
- namespace Terminal
- {
- public class Terminal : ITerminalDisplay
- {
- private int terminalID;
- private Terminal terminal;
- public void FeeCal()
- {
- }
- public void GetTerminalState()
- {
- }
- public List<object> GetParkingRecords()
- {
- return null;
- }
- public List<object> GetOrderRecords()
- {
- return null;
- }
- private object SearchPaymentScheme()
- {
- return null;
- }
- private void UpdateParkingRecords(int Object)
- {
- }
- }
- }
|