public static void UpdateClientes(Clientes oCliente)
 {
     try
     {
         ClientesPersistence ClientePer = new ClientesPersistence();
         ClientePer.UpdateCliente(oCliente);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }