bllBaseBusiness.cs优化DataBinder及DataBindRow属性
bllBaseBusiness.cs优化DataBinder及DataBindRow属性C# Code:
public DataTable DataBinder
{
get
{
if (_CurrentBusiness == null || _CurrentBusiness.Tables.Count == 0)
return null;
else
return _CurrentBusiness.Tables[0];
}
}
public DataRow DataBindRow
{
get
{
DataTable dt = this.DataBinder;
if (dt == null || dt.Rows.Count == 0)
return null;
else
return dt.Rows[0];
}
}