Esempio n. 1
0
 public int Insert()
 {
     int nResult = 0;
     cTestimonial objInfor = new cTestimonial();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = 1;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Esempio n. 2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cTestimonial objDAL = new cTestimonial();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Esempio n. 3
0
 public int UpdateStatus(int ID, int Status)
 {
     int nResult = 0;
     cTestimonial objDAL = new cTestimonial();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.Status = Status;
         //  objDAL.DateCreated  = DateTime.Today;
         objDAL.Save();
         nResult = objDAL.TestimonialID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Esempio n. 4
0
 public int Update(int ID)
 {
     int nResult = 0;
     cTestimonial objInfor = new cTestimonial();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }