src/FingersDance.ViewModel/ProjectViewModel.cs
changeset 143 9f157d9c725b
child 148 c379899e9c94
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.ViewModel/ProjectViewModel.cs	Tue Oct 13 19:33:13 2009 +0200
@@ -0,0 +1,40 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using FingersDance.Data;
+
+namespace FingersDance.ViewModels
+{
+    public class ProjectViewModel : ViewModelBase
+    {
+        readonly Project project = new Project();
+
+        #region Constructor
+
+        public ProjectViewModel() { }
+
+        public ProjectViewModel(Project p)
+        {
+            project = p;
+        }
+
+        #endregion
+
+        #region Properties
+        
+        public User User
+        {
+            get { return project.User; }
+            set { project.User = value; }
+        }
+
+        public Cutting Cutting
+        {
+            get { return project.Cutting; }
+            set { project.Cutting = value; }
+        }
+
+        #endregion
+    }
+}