IWebServer.cs 430 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace centralController.WebServer
  7. {
  8. public interface IWebServer
  9. {
  10. bool Start(int port);
  11. void Stop();
  12. void BookParkRecord();
  13. void BookFetchRecord();
  14. bool ReservedCarCheck(string license);
  15. void Connect();
  16. bool GetConnectStatus();
  17. }
  18. }