示例#1
0
文件: LabService.cs 项目: meimeic/XYS
        private LabService()
        {
            this.PKDAL = new LabPKDAL();
            this.ReportDAL = new LabReportDAL();

            this.InfoHandler = new InfoHandle(this.ReportDAL);
            this.ItemHandler = new ItemHandle(this.ReportDAL);
            this.ImageHandler = new ImageHandle(this.ReportDAL);
            this.GSItemHandler = new GSItemHandle(this.ReportDAL);
            this.GSCustomHandler = new GSCustomHandle(this.ReportDAL);
            this.GeneCustomHandler = new GeneCustomHandle(this.ReportDAL);

            this.Item2CustomMap = new Hashtable(20);
            this.ImageNormalMap = new Hashtable(40);
            this.RequestQueue = new BlockingCollection<LabPK>(5000);

            this.Init();
        }
示例#2
0
文件: InfoHandle.cs 项目: meimeic/XYS
 public InfoHandle(LabReportDAL dal)
     : base(dal)
 {
 }
示例#3
0
 public GeneCustomHandle(LabReportDAL dal)
     : base(dal)
 {
 }
示例#4
0
 public ImageHandle(LabReportDAL dal)
     : base(dal)
 {
 }
示例#5
0
 public GSItemHandle(LabReportDAL dal)
     : base(dal)
 {
 }