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(); }
public InfoHandle(LabReportDAL dal) : base(dal) { }
public GeneCustomHandle(LabReportDAL dal) : base(dal) { }
public ImageHandle(LabReportDAL dal) : base(dal) { }
public GSItemHandle(LabReportDAL dal) : base(dal) { }