private void Clean() {
     this.Sysid = null;
     this.Teammembersysid = null;
     this.Tag = string.Empty;
     this.Createdate = null;
     this.Active = null;
     this.Teammembers = null;
 }
 private void Clean() {
     this.Sysid = null;
     this.Publicid = null;
     this._teammembersysid = null;
     this.Keypath = string.Empty;
     this.Keyvalue = string.Empty;
     this.Active = null;
     this.Teammembers = null;
 }
 public static Teammembers Load(System.Nullable<int> SysId) {
     resourceSchema.Dal.Teammembers dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammembers();
         System.Data.DataSet ds = dbo.TeamMembers_Select_One(SysId);
         Teammembers obj = null;
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 obj = new Teammembers();
                 obj.Fill(ds.Tables[0].Rows[0]);
             }
         }
         return obj;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public static TeammembersCollection GetAll() {
     resourceSchema.Dal.Teammembers dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammembers();
         System.Data.DataSet ds = dbo.TeamMembers_Select_All();
         TeammembersCollection collection = new TeammembersCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Teammembers obj = new Teammembers();
                 obj.Fill(ds.Tables[0].Rows[i]);
                 if ((obj != null)) {
                     collection.Add(obj);
                 }
             }
         }
         return collection;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 private void Clean() {
     this.Sysid = null;
     this.Publicid = null;
     this.Path = string.Empty;
     this._tasksysid = null;
     this._teammembersysid = null;
     this.Createdate = null;
     this.Active = null;
     this.Tasks = null;
     this.Teammembers = null;
 }
 private void Clean() {
     this.Sysid = null;
     this.Publicid = null;
     this._parentteammembersysid = null;
     this._childteammembersysid = null;
     this.Linkpath = string.Empty;
     this.Createdate = null;
     this.Lastmodifieddate = null;
     this.Active = null;
     this.Teammembers = null;
     this.Teammembers2 = null;
 }