If possible create a couple of additional account with ADMIN permission. I hope their...
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Models / CPEWeb.designer.cs
index 180f41a..dc2d7c9 100644 (file)
@@ -181,7 +181,15 @@ namespace CPE.App.Web.Models
                                return this.GetTable<MeetingDetail>();
                        }
                }
-               
+
+        public System.Data.Linq.Table<Users> Users
+        {
+            get
+            {
+                return this.GetTable<Users>();
+            }
+        }
+
                public System.Data.Linq.Table<MeetingParticipantSession> MeetingParticipantSessions
                {
                        get
@@ -5907,7 +5915,88 @@ namespace CPE.App.Web.Models
                        }
                }
        }
-       
+
+    public partial class Users
+    {
+
+        private System.DateTime _Created;
+
+        private string _Login;
+
+        private string _Password;
+
+        private bool _IsAdmin;
+
+        public Users()
+        {
+        }
+
+        [global::System.Data.Linq.Mapping.ColumnAttribute(Storage = "_Created", DbType = "SmallDateTime NOT NULL")]
+        public System.DateTime Created
+        {
+            get
+            {
+                return this._Created;
+            }
+            set
+            {
+                if ((this._Created != value))
+                {
+                    this._Created = value;
+                }
+            }
+        }
+
+        [global::System.Data.Linq.Mapping.ColumnAttribute(Storage = "_Login", DbType = "NVarChar(500) NOT NULL", CanBeNull = false)]
+        public string Login
+        {
+            get
+            {
+                return this._Login;
+            }
+            set
+            {
+                if ((this._Login != value))
+                {
+                    this._Login = value;
+                }
+            }
+        }
+
+        [global::System.Data.Linq.Mapping.ColumnAttribute(Storage = "_Password", DbType = "NVarChar(MAX) NOT NULL", CanBeNull = false)]
+        public string Password
+               {
+            get
+            {
+                return this._Password;
+            }
+            set
+            {
+                if ((this._Password != value))
+                {
+                    this._Password = value;
+                }
+            }
+        }
+
+        [global::System.Data.Linq.Mapping.ColumnAttribute(Storage = "_IsAdmin", DbType = "Bit NOT NULL")]
+        public bool IsAdmin
+               {
+            get
+            {
+                return this._IsAdmin;
+            }
+            set
+            {
+                if ((this._IsAdmin != value))
+                {
+                    this._IsAdmin = value;
+                }
+            }
+        }
+    }
+
+
        public partial class CreateRebroadcastSessionResult
        {