Exemplo n.º 1
0
        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();
        }
Exemplo n.º 2
0
 public InfoHandle(LabReportDAL dal)
     : base(dal)
 {
 }
Exemplo n.º 3
0
 public GeneCustomHandle(LabReportDAL dal)
     : base(dal)
 {
 }
Exemplo n.º 4
0
 public ImageHandle(LabReportDAL dal)
     : base(dal)
 {
 }
Exemplo n.º 5
0
 public GSItemHandle(LabReportDAL dal)
     : base(dal)
 {
 }