SvdServiceForWindows.cs 504 B

12345678910111213141516171819202122232425
  1. using System.ServiceProcess;
  2. using SvdCli.App;
  3. namespace SvdCli.WindowsService
  4. {
  5. internal class SvdServiceForWindows : ServiceBase
  6. {
  7. private readonly SvdService _service;
  8. public SvdServiceForWindows(SvdService service)
  9. {
  10. _service = service;
  11. }
  12. protected override void OnStart(string[] args)
  13. {
  14. _service.Start();
  15. }
  16. protected override void OnStop()
  17. {
  18. _service.Stop();
  19. }
  20. }
  21. }