示例#1
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cStaticPages objDAL = new cStaticPages();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
示例#2
0
 public int UpdateStatus(int ID, int Status)
 {
     int nResult = 0;
     cStaticPages objDAL = new cStaticPages();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.Status = Status;
       //  objDAL.DateCreated  = DateTime.Today;
         objDAL.Save();
         nResult = objDAL.StaticPageID ;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
示例#3
0
 public int Update(int ID)
 {
     int nResult = 0;
     cStaticPages objInfor = new cStaticPages();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
示例#4
0
        public int UpdatePriority(int StaticPageID, int Priority)
        {
            int nResult = 0;
            cStaticPages objDAL = new cStaticPages();
            try
            {
                objDAL.LoadByPrimaryKey(StaticPageID);
                objDAL.Priority = Priority;

                objDAL.Save();
                nResult = objDAL.StaticPageID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }
示例#5
0
 public void LoadById(int ID)
 {
     cStaticPages objDAL = new cStaticPages();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }