public virtual void Load() { resourceSchema.Dal.Projectattributes dbo = null; try { dbo = new resourceSchema.Dal.Projectattributes(); System.Data.DataSet ds = dbo.ProjectAttributes_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 Projectattributes Load(System.Nullable<int> SysId) { resourceSchema.Dal.Projectattributes dbo = null; try { dbo = new resourceSchema.Dal.Projectattributes(); System.Data.DataSet ds = dbo.ProjectAttributes_Select_One(SysId); Projectattributes obj = null; if (GlobalTools.IsSafeDataSet(ds)) { if ((ds.Tables[0].Rows.Count > 0)) { obj = new Projectattributes(); obj.Fill(ds.Tables[0].Rows[0]); } } return obj; } catch (System.Exception ) { throw; } finally { if ((dbo != null)) { dbo.Dispose(); } } }