private void Clean() { this.Sysid = null; this._teamstatussysid = null; this._teamtypesysid = null; this.Publicid = null; this.Path = string.Empty; this.Createdate = null; this.Lastmodifieddate = null; this.IsReadonly = null; this.Active = null; this._projectteamsCollection = null; this._teamlinksCollection = null; this._teamlinksCollection2 = null; this._teammetadataCollection = null; this.Teamstatus = null; this.Teamtypes = null; this._teamtagsCollection = null; this._teamteammembersCollection = null; }
public static TeamtagsCollection GetAll() { resourceSchema.Dal.Teamtags dbo = null; try { dbo = new resourceSchema.Dal.Teamtags(); System.Data.DataSet ds = dbo.TeamTags_Select_All(); TeamtagsCollection collection = new TeamtagsCollection(); if (GlobalTools.IsSafeDataSet(ds)) { for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) { Teamtags obj = new Teamtags(); 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(); } } }