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