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; }
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; }
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; }
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; }
public void LoadById(int ID) { cProducts objDAL = new cProducts(); objDAL.LoadByPrimaryKey(ID); ConvertData(objDAL); }