private void Clean() {
     this.Sysid = null;
     this._taskstatussysid = null;
     this._tasktypesysid = null;
     this.Publicid = null;
     this.Path = string.Empty;
     this.Createdate = null;
     this.Lastmodifieddate = null;
     this.IsReadonly = null;
     this.Active = null;
     this._taskareasCollection = null;
     this._taskiterationsCollection = null;
     this._tasklinksCollection = null;
     this._tasklinksCollection2 = null;
     this._taskmetadataCollection = null;
     this.Taskstatus = null;
     this.Tasktypes = null;
     this._tasktagsCollection = null;
     this._taskteammembersCollection = null;
     this._tasktimeentrysCollection = null;
 }
 public static TaskmetadataCollection GetAll() {
     resourceSchema.Dal.Taskmetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Taskmetadata();
         System.Data.DataSet ds = dbo.TaskMetaData_Select_All();
         TaskmetadataCollection collection = new TaskmetadataCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Taskmetadata obj = new Taskmetadata();
                 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();
         }
     }
 }