public bool RemoveSkillProficiency(Dictionaries.SkillTypes input)
 {
     if (SkillProficiencies.Contains(input))
     {
         SkillProficiencies.Remove(input);
         return(true);
     }
     else
     {
         return(false);
     }
 }