Esempio n. 1
0
    public static void update(int contenedor, List <short> lista)
    {
        IB.Progress.BLL.ComunidadProgress cComunidad = null;
        try
        {
            cComunidad = new IB.Progress.BLL.ComunidadProgress();

            cComunidad.Update(contenedor, lista);
            cComunidad.Dispose();
        }
        catch (Exception ex)
        {
            if (cComunidad != null)
            {
                cComunidad.Dispose();
            }
            IB.Progress.Shared.Smtp.SendSMTP("Error al actualizar comunidad Progress", ex.Message);
        }
    }