Exemplo n.º 1
0
 public string CrearCliente(Cliente unCliente)
 {
     try
     {
         data = new ClienteData();
         return(data.CrearCliente(unCliente));
     }
     catch (SqlException ex)
     {
         throw ex;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }