Example #1
0
    public int deleteParalelo(int paraleloId)
    {
        int      result         = 0;
        PARALELO paraleloDelete = obtainParaleloById(paraleloId);

        if (paraleloDelete != null)
        {
            Datos.PARALELOes.Remove(paraleloDelete);
            result = Datos.SaveChanges();
        }
        return(result);
    }
Example #2
0
    public PARALELO refreshParalelo(int paraleloId, String nombre)
    {
        PARALELO paralelo = null;

        PARALELO paraleloRefresh = obtainParaleloById(paraleloId);

        if (paraleloRefresh != null)
        {
            deleteParalelo(paraleloId);
            paralelo = addParalelo(nombre);
        }
        return(paralelo);
    }
    private void cargarParalelos()
    {
        PARALELO        paralelo  = new PARALELO();
        List <PARALELO> paralelos = paralelo.obtainAllParalelos();

        if (paralelos != null && paralelos.Count() > 0)
        {
            ListItem item = null;
            foreach (PARALELO pa in paralelos)
            {
                item = new ListItem(pa.NOMBRE, pa.PARALELOID.ToString());
                cbParalelo.Items.Add(item);
            }
        }
    }
Example #4
0
    public PARALELO addParalelo(String nombre)
    {
        PARALELO paralelo = new PARALELO();

        try
        {
            paralelo.PARALELOID = 0;
            paralelo.NOMBRE = nombre;

            Datos.PARALELOes.Add(paralelo);
            Datos.SaveChanges();
        }
        catch (Exception ex)
        {
            string x = ex.Message;
        }

        return paralelo;
    }
Example #5
0
    public PARALELO addParalelo(String nombre)
    {
        PARALELO paralelo = new PARALELO();

        try
        {
            paralelo.PARALELOID = 0;
            paralelo.NOMBRE     = nombre;

            Datos.PARALELOes.Add(paralelo);
            Datos.SaveChanges();
        }
        catch (Exception ex)
        {
            string x = ex.Message;
        }

        return(paralelo);
    }
 private void cargarParalelos()
 {
     PARALELO paralelo = new PARALELO();
     List<PARALELO> paralelos = paralelo.obtainAllParalelos();
     if (paralelos != null && paralelos.Count() > 0)
     {
         ListItem item = null;
         foreach (PARALELO pa in paralelos)
         {
             item = new ListItem(pa.NOMBRE, pa.PARALELOID.ToString());
             cbParalelo.Items.Add(item);
         }
     }
 }