Ejemplo n.º 1
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cBasket objDAL = new cBasket();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Ejemplo n.º 2
0
 public int Update(int ID)
 {
     int nResult = 0;
     cBasket objInfor = new cBasket();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Ejemplo n.º 3
0
 public void LoadById(int ID)
 {
     cBasket objDAL = new cBasket();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Ejemplo n.º 4
0
        public int UpdateStatus(int ID, int Status)
        {
            int nResult = 0;
            cBasket objDAL = new cBasket();
            try
            {
                objDAL.LoadByPrimaryKey(ID);
                objDAL.Status = Status;

                objDAL.Save();
                nResult = objDAL.BasketID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }