Esempio n. 1
0
 public int Insert()
 {
     int nResult = 0;
     cAdv objInfor = new cAdv();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = 1;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Esempio n. 2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cAdv objDAL = new cAdv();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Esempio n. 3
0
        public int UpdatePriority(int AdvID, int Priority)
        {
            int nResult = 0;
            cAdv objDAL = new cAdv();
            try
            {
                objDAL.LoadByPrimaryKey(AdvID);
                objDAL.Priority = Priority;

                objDAL.Save();
                nResult = objDAL.AdvID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }
Esempio n. 4
0
        public int UpdateStatus(int ID, int Status)
        {
            int nResult = 0;
            cAdv objDAL = new cAdv();
            try
            {
                objDAL.LoadByPrimaryKey(ID);
                objDAL.Status = Status;

                objDAL.Save();
                nResult = objDAL.AdvID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }
Esempio n. 5
0
 public int Update(int ID)
 {
     int nResult = 0;
     cAdv objInfor = new cAdv();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }