FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/CardReaderService/Program.cs
chris.watts90@outlook.com 9dc4832471 Added Ninject, configuration and default logger.
Made DefaultLogger use the eventlog rather than debug.writeline(..)
renamed service1 to CardReaderService
#22
2017-02-18 09:09:19 +00:00

27 lines
586 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Xsl;
namespace CardReaderService
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new CardReaderService()
};
ServiceBase.Run(ServicesToRun);
}
}
}