public Consultant GetConsultantByNumber(int number)
 {
     return(consultantRepository.Get(x => x.ConsultantNumber == number));
 }