Пример #1
0
 private void CargarSorteos()
 {
     sorteos = sistemaLoteriaChances.ObtenerSorteos();
     if (sorteos == null)
     {
         MessageBox.Show("Ocurrió un error recuperando los datos de la base de datos",
                         "Error de conexión", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Пример #2
0
        private void CargarSorteos()
        {
            sorteos = sistemaLoteriaChances.ObtenerSorteos();
            dtSorteos.Clear();
            if (sorteos != null)
            {
                int    cantidadSorteos = sorteos.Count;
                Sorteo sorteo;

                for (int i = 0; i < cantidadSorteos; i++)
                {
                    sorteo = sorteos[i];
                    dtSorteos.Rows.Add(new object[] { sorteo.TipoSorteo, sorteo.NumeroSorteo,
                                                      sorteo.Fecha.ToShortDateString(), sorteo.CantidadFracciones,
                                                      sorteo.PrecioFraccion.ToString("#,#", CultureInfo.InvariantCulture),
                                                      sorteo.LeyendaBillete, sorteo.Estado });
                }
            }
            else
            {
                MessageBox.Show("Ocurrió un error recuperando los datos de la base de datos", "Error de conexión", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Пример #3
0
        private void CargarSorteos()
        {
            sorteos = sistemaLoteriaChances.ObtenerSorteos();
            dtSorteos.Clear();
            if (sorteos != null)
            {
                int    cantidadSorteos = sorteos.Count;
                Sorteo sorteo;

                for (int i = 0; i < cantidadSorteos; i++)
                {
                    sorteo = sorteos[i];
                    if (!sorteo.Estado && sorteo.PlanPremios.Premios.Count > 0)
                    {
                        dtSorteos.Rows.Add(new object[] { sorteo.TipoSorteo, sorteo.NumeroSorteo,
                                                          sorteo.Fecha.ToShortDateString() });
                    }
                }
            }
            else
            {
                MessageBox.Show("Ocurrió un error recuperando los datos de la base de datos", "Error de conexión", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }