IWebServer.cs 306 B

1234567891011121314151617181920
  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 bookParkRecord();
  13. void bookFetchRecord();
  14. }
  15. }