|
1234567891011121314151617181920212223242526272829 |
- 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()
- {
-
- }
- }
- }
|