IWebServer.cs 365 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WebServer
  7. {
  8. public interface IWebServer
  9. {
  10. bool Start(int port);
  11. void Stop();
  12. void ParkBooking();
  13. void FetchBooking();
  14. void bookParkRecord();
  15. void bookFetchRecord();
  16. }
  17. }