equal
deleted
inserted
replaced
49 /// <summary> |
49 /// <summary> |
50 /// Constructeur par défaut |
50 /// Constructeur par défaut |
51 /// </summary> |
51 /// </summary> |
52 protected PolemicElement() |
52 protected PolemicElement() |
53 { |
53 { |
|
54 Id = System.Guid.NewGuid().ToString(); |
54 Tags = new List<String>(); |
55 Tags = new List<String>(); |
55 } |
56 } |
56 |
57 |
57 /// <summary> |
58 /// <summary> |
58 /// Constructeur |
59 /// Constructeur |
59 /// </summary> |
60 /// </summary> |
60 /// <param name="Vc">VideoChapter auquel l'annotation est ratachée</param> |
61 /// <param name="Vc">VideoChapter auquel l'annotation est ratachée</param> |
61 public PolemicElement(VideoChapter Vc):base() |
62 public PolemicElement(VideoChapter Vc):base() |
62 { |
63 { |
|
64 Id = System.Guid.NewGuid().ToString(); |
63 Chapter = Vc; |
65 Chapter = Vc; |
64 Tags = new List<string>(); |
66 Tags = new List<string>(); |
65 } |
67 } |
66 |
68 |
67 /// <summary> |
69 /// <summary> |