using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Linq; using System.ServiceProcess; using System.Text; namespace CNAS_SyncService { public partial class SyncSerivice : ServiceBase { public SyncSerivice() { InitializeComponent(); } protected override void OnStart(string[] args) { new SyncServiceOperation().Start(); } protected override void OnStop() { } } }