예제 #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
파일: ImageHandle.cs 프로젝트: meimeic/XYS
 public ImageHandle(LabReportDAL dal)
     : base(dal)
 {
 }
예제 #5
0
파일: GSItemHandle.cs 프로젝트: meimeic/XYS
 public GSItemHandle(LabReportDAL dal)
     : base(dal)
 {
 }