Example #1
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 #2
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 #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 DataTable Search(int ItemView, int Status, int PageIndex, int PageSize, ref int PageCount)
 {
     DataTable tbResult = new DataTable();
     cContacts objDAL = new cContacts();
     tbResult = objDAL.Search(ItemView, Status, PageIndex, PageSize, ref  PageCount);
     return tbResult;
 }
Example #5
0
 public void LoadById(int ID)
 {
     cContacts objDAL = new cContacts();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Example #6
0
 private void MappingData(cContacts objInfor)
 {
     objInfor.Fullname = Data.Fullname;
     objInfor.Email = Data.Email;
     objInfor.Telephone = Data.Telephone;
     objInfor.MainContent = Data.MainContent;
     objInfor.CreatedDate = Data.CreatedDate;
     objInfor.Status = Data.Status;
 }
Example #7
0
 private void ConvertData(cContacts objInfor)
 {
     Data.Fullname = objInfor.Fullname;
     Data.Email = objInfor.Email;
     Data.Telephone = objInfor.Telephone;
     Data.MainContent = objInfor.MainContent;
     Data.CreatedDate = objInfor.CreatedDate;
     Data.Status = objInfor.Status;
 }
Example #8
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;
        }