IWebServer.cs 372 B

12345678910111213141516171819202122
  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. }
  16. }