websitepanel/WebsitePanel/Sources/WebsitePanel.SchedulerService/SchedulerService.cs
2013-05-03 17:29:25 +03:00

26 lines
No EOL
495 B
C#

using System.ServiceProcess;
using WebsitePanel.EnterpriseServer;
namespace WebsitePanel.SchedulerService
{
public partial class SchedulerService : ServiceBase
{
#region Construcor
public SchedulerService()
{
InitializeComponent();
}
#endregion
#region Methods
protected override void OnStart(string[] args)
{
Scheduler.Start();
}
#endregion
}
}