using System.ServiceProcess; namespace CustomsCargoSystem.ExchangeDataStorageService { internal static class Program { private static void Main() { ServiceBase[] services = new ServiceBase[1] { new MainService() }; ServiceBase.Run(services); } } }