public int DeleteById(int ID) { int nResult = 0; cProductFile objDAL = new cProductFile(); try { objDAL.LoadByPrimaryKey(ID); objDAL.MarkAsDeleted(); objDAL.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public int Insert() { int nResult = 0; cProductFile objInfor = new cProductFile(); try { objInfor.AddNew(); this.MappingData(objInfor); objInfor.Save(); nResult = objInfor.ProductFileID ; } catch { nResult = 0; } return nResult; }
public int Update(int ID) { int nResult = 0; cProductFile objInfor = new cProductFile(); try { objInfor.LoadByPrimaryKey(ID); this.MappingData(objInfor); objInfor.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }