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; } }
public Tuple <bool, int> AgregarCliente(Cliente cliente) { return(clientesDatos.AgregarCliente(cliente)); }