private void Clean() {
     this.Sysid = null;
     this.Timeentrysysid = null;
     this.Tag = string.Empty;
     this.Createdate = null;
     this.Active = null;
     this.Timeentrys = null;
 }
 private void Clean() {
     this.Sysid = null;
     this.Publicid = null;
     this._timeentrysysid = null;
     this.Keypath = string.Empty;
     this.Keyvalue = string.Empty;
     this.Active = null;
     this.Timeentrys = null;
 }
 private void Clean() {
     this.Sysid = null;
     this.Publicid = null;
     this.Path = string.Empty;
     this._tasksysid = null;
     this._timeentrysysid = null;
     this.Createdate = null;
     this.Active = null;
     this.Tasks = null;
     this.Timeentrys = null;
 }
 private void Clean() {
     this.Sysid = null;
     this._timeentrysysid = null;
     this.Createdate = null;
     this.Lastmodifieddate = null;
     this.Timeentrydate = null;
     this.Hours = null;
     this.Billable = null;
     this.Note = string.Empty;
     this.Timeentrys = null;
 }
 public static Timeentrys Load(System.Nullable<int> SysId) {
     resourceSchema.Dal.Timeentrys dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrys();
         System.Data.DataSet ds = dbo.TimeEntrys_Select_One(SysId);
         Timeentrys obj = null;
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 obj = new Timeentrys();
                 obj.Fill(ds.Tables[0].Rows[0]);
             }
         }
         return obj;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public static TimeentrysCollection GetAll() {
     resourceSchema.Dal.Timeentrys dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrys();
         System.Data.DataSet ds = dbo.TimeEntrys_Select_All();
         TimeentrysCollection collection = new TimeentrysCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Timeentrys obj = new Timeentrys();
                 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._parenttimeentrysysid = null;
     this._childtimeentrysysid = null;
     this.Linkpath = string.Empty;
     this.Createdate = null;
     this.Lastmodifieddate = null;
     this.Active = null;
     this.Timeentrys = null;
     this.Timeentrys2 = null;
 }