public SystemDetail Get(Int32?ID) { return(m_db.Get(ID)); }
public SystemDetail Get(Int32?ID) { return((!ID.HasValue) ? null : m_db.Get(ID)); }