public virtual void Update() {
     resourceSchema.Dal.Timeentrymetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrymetadata();
         dbo.TimeEntryMetaData_Update(this.Sysid, this.Publicid, this._timeentrysysid, this.Keypath, this.Keyvalue, this.Active);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public virtual void Delete() {
     resourceSchema.Dal.Timeentrymetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrymetadata();
         dbo.TimeEntryMetaData_Delete(this.Sysid);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public static Timeentrymetadata Load(System.Nullable<int> SysId) {
     resourceSchema.Dal.Timeentrymetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrymetadata();
         System.Data.DataSet ds = dbo.TimeEntryMetaData_Select_One(SysId);
         Timeentrymetadata obj = null;
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 obj = new Timeentrymetadata();
                 obj.Fill(ds.Tables[0].Rows[0]);
             }
         }
         return obj;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public virtual void Load() {
     resourceSchema.Dal.Timeentrymetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrymetadata();
         System.Data.DataSet ds = dbo.TimeEntryMetaData_Select_One(this.Sysid);
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 this.Fill(ds.Tables[0].Rows[0]);
             }
         }
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public static TimeentrymetadataCollection GetAll() {
     resourceSchema.Dal.Timeentrymetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrymetadata();
         System.Data.DataSet ds = dbo.TimeEntryMetaData_Select_All();
         TimeentrymetadataCollection collection = new TimeentrymetadataCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Timeentrymetadata obj = new Timeentrymetadata();
                 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();
         }
     }
 }