using Edu.Education;
using Edu.Education.Helper;
using System;
using System.ServiceProcess;

namespace Edu.EducationCore
{
    class Program
    {
        static void Main(string[] args)
        {
            ServiceBase[] ServicesToRun;
            ServicesToRun = new ServiceBase[]
            {
                new EducationTimerServer(),
            };
            ServiceBase.Run(ServicesToRun);

            //Console.WriteLine("来了");
            //new QuarzHelper().EduCreateScrollAppointmentTimer().GetAwaiter().GetResult();
            //Console.WriteLine("结束了");
            //Console.ReadKey();
        }
    }
}