using System; using System.Collections.Generic; using System.Linq; using System.ServiceProcess; using System.Text; using System.Threading.Tasks; namespace KatekTracability { static class Program { /// /// Der Haupteinstiegspunkt für die Anwendung. /// static void Main() { ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new KatekTracability() }; ServiceBase.Run(ServicesToRun); } } }