Ejemplo n.º 1
0
 /// <summary>
 /// Serves as a hash function for a particular type. GetHashCode() is suitable
 /// for use in hashing algorithms and data structures like a hash table.
 /// </summary>
 /// <returns>A hash code for the current object.</returns>
 public override int GetHashCode()
 {
     return(PositionDescriptionID.GetHashCode() ^ EvalCriteriaID.GetHashCode());
 }
Ejemplo n.º 2
0
        ///<summary>
        /// Returns a String that represents the current object.
        ///</summary>
        public override string ToString()
        {
            string retval = string.Empty;

            retval = string.Format("Position Description ID:{0}, Total Points:{1}, Grade: GS-{2}", PositionDescriptionID.ToString(), TotalPoints.ToString(), Grade.ToString());
            return(retval);
        }
Ejemplo n.º 3
0
 ///<summary>
 /// Returns a String that represents the current object.
 ///</summary>
 public override string ToString()
 {
     return("PositionDescriptionID:" + PositionDescriptionID.ToString() + "EvalCriteriaID:" + EvalCriteriaID.ToString());
 }