client/src/Iri.Modernisation.Data/Models/PolemicElement.cs
changeset 38 bd33267300aa
parent 36 b6df6fce6e5d
child 43 7fa99f1c36a4
equal deleted inserted replaced
37:beb938b4fb76 38:bd33267300aa
    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>