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.Createdate = null; this.Lastmodifieddate = null; this.Active = null; this._teammembersCollection = null; }