26 lines
564 B
C#
26 lines
564 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.ServiceProcess;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace KatekTracability
|
|||
|
{
|
|||
|
static class Program
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
|||
|
/// </summary>
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
ServiceBase[] ServicesToRun;
|
|||
|
ServicesToRun = new ServiceBase[]
|
|||
|
{
|
|||
|
new KatekTracability()
|
|||
|
};
|
|||
|
ServiceBase.Run(ServicesToRun);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|