public static string Value(IQBIDType ID) { if (ID == null) { return(string.Empty); } else { return(ID.GetValue()); } }
protected string ReadQbId(IQBIDType value) { string result = string.Empty; if (value != null) { result = value.GetValue(); } return(result); }
public static string Value(IQBIDType ID) { if (ID == null) { return string.Empty; } else { return ID.GetValue(); } }