using System.ServiceProcess; namespace SharpCATService { public partial class Service : ServiceBase { public Service() { InitializeComponent(); } protected override void OnStart(string[] args) { } protected override void OnStop() { } } }