本文整理汇总了C#中SIGEEA_BO.DataClasses1DataContext.SIGEEA_spObtenerMonedaCuota方法的典型用法代码示例。如果您正苦于以下问题:C# DataClasses1DataContext.SIGEEA_spObtenerMonedaCuota方法的具体用法?C# DataClasses1DataContext.SIGEEA_spObtenerMonedaCuota怎么用?C# DataClasses1DataContext.SIGEEA_spObtenerMonedaCuota使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SIGEEA_BO.DataClasses1DataContext
的用法示例。
在下文中一共展示了DataClasses1DataContext.SIGEEA_spObtenerMonedaCuota方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BtnPagar_Click
/// <summary>
/// Evento click del uc_DeudorCuota (Pagar)
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BtnPagar_Click(object sender, RoutedEventArgs e)
{
DataClasses1DataContext dc = new DataClasses1DataContext();
Button boton = (Button)sender;
id_cuota_asociado = Convert.ToInt32(boton.Tag);
grdSecundaria.Visibility = Visibility.Collapsed;
grdIndicarMonto.Visibility = Visibility.Visible;
lblSimboloMoneda.Content = dc.SIGEEA_spObtenerMonedaCuota(id_cuota_asociado).First().Simbolo_Moneda;
}
示例2: btnPagarCuota_Click
private void btnPagarCuota_Click(object sender, RoutedEventArgs e)
{
try
{
if (MessageBox.Show("¿Realmente quiere realizar el pago?", "SIGEEA", MessageBoxButton.YesNo, MessageBoxImage.Warning) == MessageBoxResult.Yes)
{
ValidacionesMantenimiento validacion = new ValidacionesMantenimiento();
if (validacion.Validar(txbMonto.Text, Convert.ToInt32(txbMonto.Tag)) == true)
{
AsociadoMantenimiento asociado = new AsociadoMantenimiento();
DataClasses1DataContext dc = new DataClasses1DataContext();
double SaldoAnterior = dc.SIGEEA_Cuota_Asociados.First(c => c.PK_Id_Cuota_Asociado == id_cuota_asociado).Saldo_Cuota_Asociado;
if (SaldoAnterior - Convert.ToDouble(txbMonto.Text) >= 0)
{
if (asociado.RealizarPagoCuota(id_cuota_asociado, Convert.ToDouble(txbMonto.Text)) == true)
{
MessageBox.Show("Pago realizado con éxito", "SIGEEA", MessageBoxButton.OK, MessageBoxImage.Exclamation);
SIGEEA_spGenerarFacturaCuotaResult factura = asociado.GenerarFacturaCuota(id_cuota_asociado, Convert.ToDouble(txbMonto.Text), SaldoAnterior);
txbFactura.AppendText(factura.Nombre_Empresa);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.CedJuridica);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Direccion_Empresa);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Telefono);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Correo);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Fecha);
txbFactura.AppendText(" " + factura.Hora);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.NombreAsociado);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.CedPersona);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.CodigoAsociado);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.NombreCuota);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Total);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText("Saldo anterior: " + dc.SIGEEA_spObtenerMonedaCuota(id_cuota_asociado).First().Simbolo_Moneda + SaldoAnterior.ToString());
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Monto);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(factura.Saldo);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText(Environment.NewLine);
txbFactura.AppendText("¡Gracias por su preferencia!");
grdIndicarMonto.Visibility = Visibility.Collapsed;
grdFactura.Visibility = Visibility.Visible;
}
else
{
throw new System.ArgumentException("Ha sido imposible realizar el pago.");
}
}
else
{
throw new System.ArgumentException("El saldo actual es menor que el monto digitado.");
}
}
else
{
BrushConverter bc = new BrushConverter();
txbMonto.Foreground = (Brush)bc.ConvertFrom("#FFFF0404");
throw new System.ArgumentException("El formato del monto es incorrecto");
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "SIGEEA", MessageBoxButton.OK, MessageBoxImage.Error);
}
}