Exemplo 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;
 }
Exemplo 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;
 }
Exemplo n.º 3
0
 public DataTable SearchAll()
 {
     DataTable tbResult = new DataTable();
     cTestimonial objDAL = new cTestimonial();
     tbResult = objDAL.SearchAll();
     return tbResult;
 }
Exemplo n.º 4
0
 public DataTable Search(int PageIndex, int PageSize, ref int PageCount)
 {
     DataTable tbResult = new DataTable();
     cTestimonial objDAL = new cTestimonial();
     tbResult = objDAL.Search( PageIndex, PageSize, ref  PageCount);
     return tbResult;
 }
Exemplo n.º 5
0
 public void LoadById(int ID)
 {
     cTestimonial objDAL = new cTestimonial();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Exemplo n.º 6
0
 private void MappingData(cTestimonial objInfor)
 {
     objInfor.ClientName = Data.ClientName;
     objInfor.ClientInfo = Data.ClientInfo;
     objInfor.Status = Data.Status;
     objInfor.MainContent = Data.MainContent;
     objInfor.Priority = Data.Priority;
 }
Exemplo n.º 7
0
 private void ConvertData(cTestimonial objInfor)
 {
     Data.ClientName=objInfor.ClientName  ;
     Data.ClientInfo=objInfor.ClientInfo  ;
     Data.Status=objInfor.Status  ;
     Data.MainContent =objInfor.MainContent  ;
     Data.Priority=objInfor.Priority  ;
 }
Exemplo n.º 8
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;
 }
Exemplo n.º 9
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;
 }