/*
 *  IEnumerator waitForEffectiveFloorServiceInit() {
 *      EffectiveFloorService.init();
 *      yield return null;
 *  }
 */

    void Start()
    {
        EffectiveFloorService.init();
        //LogService.write("EffectiveFloorManager::Start()::Publish<CreatedEffectiveFloor>");
        MessageBroker.Default.Publish <CreatedEffectiveFloor>(new CreatedEffectiveFloor());
    }