diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Data/Models/PolemicElement.cs --- a/client/src/Iri.Modernisation.Data/Models/PolemicElement.cs Wed Jan 27 10:55:59 2010 +0100 +++ b/client/src/Iri.Modernisation.Data/Models/PolemicElement.cs Thu Feb 04 16:38:04 2010 +0100 @@ -51,6 +51,7 @@ /// protected PolemicElement() { + Id = System.Guid.NewGuid().ToString(); Tags = new List(); } @@ -60,6 +61,7 @@ /// VideoChapter auquel l'annotation est ratachée public PolemicElement(VideoChapter Vc):base() { + Id = System.Guid.NewGuid().ToString(); Chapter = Vc; Tags = new List(); }