client/src/Iri.Modernisation.Controls/ViewModel/HeaderProduction/HeaderProductionChapterVM.cs
changeset 38 bd33267300aa
parent 31 775d895e5d4d
--- a/client/src/Iri.Modernisation.Controls/ViewModel/HeaderProduction/HeaderProductionChapterVM.cs	Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/ViewModel/HeaderProduction/HeaderProductionChapterVM.cs	Thu Feb 04 16:38:04 2010 +0100
@@ -146,6 +146,18 @@
         public delegate void EndedDelegate();
         public event EndedDelegate Ended;
 
+        public event EventHandler IndexClicked;
+        public void IndexClick()
+        {
+            IndexClicked(this, new EventArgs());
+        }
+        
+        public event EventHandler EditClicked;
+        public void EditClick()
+        {
+            EditClicked(this, new EventArgs());
+        }
+     
 
     }
 }