Exemple #1
0
 public int Insert()
 {
     int nResult = 0;
     cAdvType objInfor = new cAdvType();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = 1;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Exemple #2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cAdvType objDAL = new cAdvType();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Exemple #3
0
 public int Update(int ID)
 {
     int nResult = 0;
     cAdvType objInfor = new cAdvType();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Exemple #4
0
 public DataTable Search()
 {
     DataTable tbResult = new DataTable();
     cAdvType objDAL = new cAdvType();
     tbResult = objDAL.Search();
     return tbResult;
 }
Exemple #5
0
 public void LoadById(int ID)
 {
     cAdvType objDAL = new cAdvType();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Exemple #6
0
 private void MappingData(cAdvType objInfor)
 {
     objInfor.Description = Data.Description;
 }
Exemple #7
0
 private void ConvertData(cAdvType objInfor)
 {
     Data.Description = objInfor.Description;
 }