protected void Application_Start(object sender, EventArgs e)
        {

            BuildingSetup setup = new BuildingSetup();
            LiveBuilding building = setup.CreateBuilding();
            setup.SetupBuilding(building);

            SMAP smapDal = new SMAP();
            SmapManager smapManager = new SmapManager(smapDal);
            RealTimeUpdater smapTimerUpdater = new RealTimeUpdater(building, smapManager);
            smapTimerUpdater.CreateUpdateTimers();
        }
 public SMapManagerTemporalt(SMAP smapDal)
 {
     this.smapDal = smapDal;
     calcMinMaxMean = new CalcMinMaxMean();
 }
 public SmapManager(SMAP smapDal)
 {
     this.smapDal = smapDal;
 }