예제 #1
0
 public int Insert()
 {
     int nResult = 0;
     cNews objInfor = new cNews();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = objInfor.NewsID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
예제 #2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cNews objDAL = new cNews();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
예제 #3
0
        public int UpdatePriority(int NewsID, int Priority)
        {
            int nResult = 0;
            cNews objDAL = new cNews();
            try
            {
                objDAL.LoadByPrimaryKey(NewsID);
                objDAL.Priority = Priority;

                objDAL.Save();
                nResult = objDAL.NewsID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }
예제 #4
0
        public int UpdateStatus(int ID, int Status)
        {
            int nResult = 0;
            cNews objDAL = new cNews();
            try
            {
                objDAL.LoadByPrimaryKey(ID);
                objDAL.Status = Status;

                objDAL.Save();
                nResult = objDAL.NewsID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }
예제 #5
0
 //Update nhung cai ma eNews Data dang nam giu thong qua cNews objInfor
 public int Update(int ID)
 {
     int nResult = 0;
     cNews objInfor = new cNews();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }