本文整理汇总了C#中SIGEEA_BO.DataClasses1DataContext.SIGEEA_spObtenerCuotas方法的典型用法代码示例。如果您正苦于以下问题:C# DataClasses1DataContext.SIGEEA_spObtenerCuotas方法的具体用法?C# DataClasses1DataContext.SIGEEA_spObtenerCuotas怎么用?C# DataClasses1DataContext.SIGEEA_spObtenerCuotas使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SIGEEA_BO.DataClasses1DataContext
的用法示例。
在下文中一共展示了DataClasses1DataContext.SIGEEA_spObtenerCuotas方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btnAdministrarCuotas_Click
private void btnAdministrarCuotas_Click(object sender, RoutedEventArgs e)
{
DataClasses1DataContext dc = new DataClasses1DataContext();
if (dc.SIGEEA_spObtenerCuotas().ToList().Count > 0)
{
wnwCuotas ventana = new wnwCuotas();
ventana.ShowDialog();
}
}
示例2: Nuevo_SelectionChanged
private void Nuevo_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
ComboBox cmb = (ComboBox)sender;
switch (cmb.SelectedItem.ToString())
{
case "Registrar nuevo asociado":
wnwRegistrarPersona ventanaRegistro = new wnwRegistrarPersona(pTipoPersona: "Asociado", pAsociado: null, pEmpleado: null, pCliente: null);
ventanaRegistro.Show();
break;
case "Editar asociado existente":
wnwVistaAsociados ventanaEdicion = new wnwVistaAsociados();
ventanaEdicion.ShowDialog();
break;
case "Agregar/Editar dirección de asociados":
wnwIdentificar ventanaDireccion = new wnwIdentificar("Direccion");
ventanaDireccion.ShowDialog();
break;
case "Registrar cuota":
wnwRegistrarCuota venRegistraCuota = new wnwRegistrarCuota(0);
venRegistraCuota.ShowDialog();
break;
case "Administrar pagos de cuotas":
DataClasses1DataContext dc = new DataClasses1DataContext();
if (dc.SIGEEA_spObtenerCuotas().ToList().Count > 0)
{
wnwCuotas ventana2 = new wnwCuotas();
ventana2.ShowDialog();
}
else MessageBox.Show("No hay cuotas registradas actualmente.", "SIGEEA", MessageBoxButton.OK, MessageBoxImage.Error);
break;
case "Reuniones":
wnwAsambleas ventana = new wnwAsambleas();
ventana.ShowDialog();
break;
case "Registrar nuevo cliente":
wnwRegistrarPersona venRegistroCliente = new wnwRegistrarPersona(pTipoPersona: "Cliente", pAsociado: null, pEmpleado: null, pCliente: null);
venRegistroCliente.Show();
break;
case "Editar cliente":
wnwBuscadorCliente venEditarCliente = new wnwBuscadorCliente("Editar");
venEditarCliente.Show();
break;
case "Generar factura":
wnwBuscadorCliente venPedidoCliente = new wnwBuscadorCliente("Pedido");
venPedidoCliente.Show();
break;
case "Realizar abono a factura":
wnwMetodoBusquedaFactura venAbonoCredito = new wnwMetodoBusquedaFactura();
venAbonoCredito.Show();
break;
case "Entrega de producto":
wnwIdentificar ventanaEntrega = new wnwIdentificar("Entrega");
ventanaEntrega.ShowDialog();
break;
case "Gestionar facturas incompletas":
wnwOpcionesFacturaProducto ventanaIncompletas = new wnwOpcionesFacturaProducto(false);
ventanaIncompletas.ShowDialog();
break;
case "Gestionar facturas pendientes":
wnwOpcionesFacturaProducto ventanaPendientes = new wnwOpcionesFacturaProducto(true);
ventanaPendientes.ShowDialog();
break;
case "Gestiona facturas incompletas":
wnwBuscadorCliente nuevo = new wnwBuscadorCliente("Facturas Incompletas");
nuevo.Show();
break;
case "Registrar nuevo empleado":
wnwRegistrarPersona ventanaRegistroEmp = new wnwRegistrarPersona(pTipoPersona: "Empleado", pAsociado: null, pEmpleado: null, pCliente: null);
ventanaRegistroEmp.Show();
break;
case "Editar empleado existente":
wnwIdentificarEmpleado ventanaIdentifica = new wnwIdentificarEmpleado("Editar");
ventanaIdentifica.ShowDialog();
break;
case "Agregar/Editar dirección de empleados":
wnwIdentificarEmpleado ventanaDir = new wnwIdentificarEmpleado("Direccion");
ventanaDir.ShowDialog();
break;
case "Gestionar puestos":
wnwPuestos ventanaPuestos = new wnwPuestos();
//.........这里部分代码省略.........
示例3: ListarCuotasActivas
/// <summary>
/// Lista las cuotas que se encuentran actualmente activas
/// </summary>
/// <returns></returns>
public List<SIGEEA_spObtenerCuotasResult> ListarCuotasActivas()
{
DataClasses1DataContext dc = new DataClasses1DataContext();
return dc.SIGEEA_spObtenerCuotas().ToList();
}