コード例 #1
0
        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();
        }
コード例 #2
0
 public SMapManagerTemporalt(SMAP smapDal)
 {
     this.smapDal = smapDal;
     calcMinMaxMean = new CalcMinMaxMean();
 }
コード例 #3
0
 public SmapManager(SMAP smapDal)
 {
     this.smapDal = smapDal;
 }