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

                objDAL.Save();
                nResult = objDAL.ProductID;
            }
            catch
            {
                nResult = 0;
            }
            return nResult;
        }
Beispiel #4
0
        public int UpdateStatus(int ID, int Status)
        {
            int nResult = 0;
            cProducts objDAL = new cProducts();
            try
            {
                objDAL.LoadByPrimaryKey(ID);
                objDAL.Status = Status;

                objDAL.Save();
                nResult = objDAL.ProductID ;
            }
            catch (Exception ex)
            {
                nResult = 0;
            }
            return nResult;
        }
Beispiel #5
0
 public int Update(int ID)
 {
     int nResult = 0;
     cProducts objInfor = new cProducts();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }