public int DeleteById(int ID) { int nResult = 0; cContacts objDAL = new cContacts(); try { objDAL.LoadByPrimaryKey(ID); objDAL.MarkAsDeleted(); objDAL.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public int Insert() { int nResult = 0; cContacts objInfor = new cContacts(); try { objInfor.AddNew(); this.MappingData(objInfor); objInfor.Save(); nResult = 1; } catch { nResult = 0; } return nResult; }
public int Update(int ID) { int nResult = 0; cContacts objInfor = new cContacts(); try { objInfor.LoadByPrimaryKey(ID); this.MappingData(objInfor); objInfor.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public int UpdateStatus(int ID, int Status) { int nResult = 0; cContacts objDAL = new cContacts(); try { objDAL.LoadByPrimaryKey(ID); objDAL.Status = Status; objDAL.Save(); nResult = objDAL.ContactID; } catch { nResult = 0; } return nResult; }