Exemplo n.º 1
0
 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 TeammetadataCollection GetAll() {
     resourceSchema.Dal.Teammetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammetadata();
         System.Data.DataSet ds = dbo.TeamMetaData_Select_All();
         TeammetadataCollection collection = new TeammetadataCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Teammetadata obj = new Teammetadata();
                 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();
         }
     }
 }