public IFlight Delete(int id) { IFlight entity = m_Repository.FindById(id); m_Repository.Remove(entity); return(entity); }