コード例 #1
0
 public void AgregarCliente(string strApellido, string strNombre, string Dni, string strDireccion, string strLocalidad, string lngTelefono, string strComentario, string Email)
 {
     try
     {
         clienteDatos.AgregarCliente(strNombre, strApellido, Dni, strDireccion, strLocalidad, lngTelefono, strComentario, Email);
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
コード例 #2
0
 public Tuple <bool, int> AgregarCliente(Cliente cliente)
 {
     return(clientesDatos.AgregarCliente(cliente));
 }