public static void Add(Publicidad p)
        {
            p.id = IdGenerator.ToString();
            IdGenerator++;

            Lista.Add(p);
        }
        public static void update(string id, Publicidad p)
        {
            p.id = id; //le agrego un id al modificar

            Lista = Lista.Where(w => w.id == id).Select(s => p).Union(Lista.Where(w => w.id != id)).ToList();
        }