Files
CMS-MTConn/MTC_Sim/MTC_AdapterTest/Service1.cs
T
Samuele E. Locatelli df66cf86aa Aggiunto scheletro progetto
con progetto servizio windows... tutto in area test...
2016-03-21 12:07:40 +01:00

29 lines
532 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace MTC_AdapterTest
{
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
}