public List <Airports> Search(string value)
 {
     value = value.Trim();
     return(_airportsRepository.Search(value));
 }