Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 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;
 }
Example #4
0
        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;
        }