public ActionResult <bool> DropIndex()
 {
     try
     {
         return(Ok(new Notification
         {
             Success = true,
             Data = _airportService.DropIndex()
         }));
     }
     catch (Exception ex)
     {
         return(BadRequest(new Notification
         {
             Success = false,
             Errors = ex.Message
         }));
     }
 }