public virtual void Update() {
     resourceSchema.Dal.Teammemberlinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammemberlinks();
         dbo.TeamMemberLinks_Update(this.Sysid, this.Publicid, this._parentteammembersysid, this._childteammembersysid, this.Linkpath, this.Createdate, this.Lastmodifieddate, this.Active);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public virtual void Delete() {
     resourceSchema.Dal.Teammemberlinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammemberlinks();
         dbo.TeamMemberLinks_Delete(this.Sysid);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public static Teammemberlinks Load(System.Nullable<int> SysId) {
     resourceSchema.Dal.Teammemberlinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammemberlinks();
         System.Data.DataSet ds = dbo.TeamMemberLinks_Select_One(SysId);
         Teammemberlinks obj = null;
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 obj = new Teammemberlinks();
                 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.Teammemberlinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammemberlinks();
         System.Data.DataSet ds = dbo.TeamMemberLinks_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 TeammemberlinksCollection GetAll() {
     resourceSchema.Dal.Teammemberlinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammemberlinks();
         System.Data.DataSet ds = dbo.TeamMemberLinks_Select_All();
         TeammemberlinksCollection collection = new TeammemberlinksCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Teammemberlinks obj = new Teammemberlinks();
                 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();
         }
     }
 }