client/src/Iri.Modernisation.Data/Models/FactoryVideoLivre.cs
changeset 36 b6df6fce6e5d
parent 32 36302cc9688d
child 38 bd33267300aa
--- a/client/src/Iri.Modernisation.Data/Models/FactoryVideoLivre.cs	Mon Jan 25 09:30:22 2010 +0100
+++ b/client/src/Iri.Modernisation.Data/Models/FactoryVideoLivre.cs	Wed Jan 27 10:37:39 2010 +0100
@@ -15,10 +15,11 @@
     public static class FactoryVideoLivre
     {
          public static WebClient xmlClient = new WebClient();
-        private static XDocument _configDoc; 
+         private static XDocument _configDoc; 
          public static VideoChapterDescription[] VideoChapterDescriptions {get;private set;}
          public static PolemicTypeDescription[] AnnotationDescriptions { get; private set; }
          public static String VideoBookListPath;
+         public static String ProductionVideoPath;
          public static int NumberOfChapters
          {
              get
@@ -58,6 +59,7 @@
                 List<PolemicTypeDescription> temp_an = new List<PolemicTypeDescription>();
                 int nb = 0;
                 VideoBookListPath = _configDoc.Root.Attribute("VideoBookList").Value;
+                ProductionVideoPath = _configDoc.Root.Attribute("ProductionVideo").Value;
                 foreach (XElement XChapter in _configDoc.Root.Element("VideoBook").Elements())
                 {
                     temp.Add(new VideoChapterDescription(nb, XChapter.Attribute("name").Value, XChapter.Attribute("color").Value));