leomon c2228379bc 手术申请手术地点
内镜选择患者默认两天
内镜选择患者横向排列
麻醉诱导用药显示到上面
麻醉记录单默认手术室 镇痛单默认胃肠镜
2023-05-12 18:27:48 +08:00

25 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace DataCollectorService
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Service1()
};
ServiceBase.Run(ServicesToRun);
}
}
}