using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
///
/// 住宅对象的逻辑
///
public class HdlResidenceLogic
{
#region ■ 变量声明___________________________
///
/// 住宅对象的逻辑
///
private static HdlResidenceLogic m_Current = null;
///
/// 住宅对象的逻辑
///
public static HdlResidenceLogic Current
{
get
{
if (m_Current == null)
{
m_Current = new HdlResidenceLogic();
}
return m_Current;
}
}
#endregion
#region ■ 一般方法___________________________
///
/// 获取楼层名称
///
/// 楼层ID
///
public string GetFloorNameById(string i_FloorId)
{
return Common.Config.Instance.Home.GetFloorNameById(i_FloorId);
}
#endregion
}
}