public string InserirDestino(int codigoDest, string nomeDest, double classificDestino, double taxa, string estado, string cidade)
 {
     try
     {
         destino.InsertDestino(codigoDest, nomeDest, classificDestino, taxa, estado, cidade);
         return("Destino inserido com sucesso");
     }
     catch (Exception exp)
     {
         return(exp.Message);
     }
 }