private async void BtnAgregarDepa_Click(object sender, RoutedEventArgs e) { try { var valor = Decimal.Parse(txtValorDepa.Text); var nombre = txtNombreDepa.Text; var direccion = txtDireccionDepa.Text; var superficie = txtSuperficieDepa.Text; var condiciones = txtCondionesDepa.Text; var fecha = DateTime.Parse(DpFechaCreacion.Text); var codigoComuna = Decimal.Parse(cmbComuna.SelectedValue.ToString()); var estadoDepto = 1; Departamento_TR departamento = new Departamento_TR(valor, nombre, direccion, superficie, condiciones, fecha, codigoComuna, estadoDepto); var res = await ComicProcessor.AgregarDepartamento(departamento); if (res != String.Empty) { MessageBox.Show(res.ToString()); } } catch (Exception eX) { MessageBox.Show(eX.ToString()); } }