public bool IsValidInput()
 {
     if (!SearchFor.Contains(" ") && !string.IsNullOrWhiteSpace(SearchFor) && !string.IsNullOrEmpty(SearchFor))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }