コード例 #1
0
ファイル: AdvType.cs プロジェクト: changtraicantinh/atpgroup
 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;
 }
コード例 #2
0
ファイル: AdvType.cs プロジェクト: changtraicantinh/atpgroup
 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;
 }
コード例 #3
0
ファイル: AdvType.cs プロジェクト: changtraicantinh/atpgroup
 public void LoadById(int ID)
 {
     cAdvType objDAL = new cAdvType();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }