public int DeleteById(int ID)
 {
     int nResult = 0;
     cStaticPageGroup objDAL = new cStaticPageGroup();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
 public int Update(int ID)
 {
     int nResult = 0;
     cStaticPageGroup objInfor = new cStaticPageGroup();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
 public void LoadById(int ID)
 {
     cStaticPageGroup objDAL = new cStaticPageGroup();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }