public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = (Name != null ? Name.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ EmployerId;
         hashCode = (hashCode * 397) ^ (Employer != null ? Employer.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (Location != null ? Location.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (Description != null ? Description.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (Skills != null ? Skills.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (Questions != null ? Questions.GetHashCode() : 0);
         return(hashCode);
     }
 }