public ActionResult <bool> PushSampleData()
        {
            try
            {
                _airportService.PushSampleData();

                return(Ok(new Notification
                {
                    Success = true
                }));
            }
            catch (Exception ex)
            {
                return(BadRequest(new Notification
                {
                    Success = false,
                    Errors = ex.Message
                }));
            }
        }