Exemplo n.º 1
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cNews objDAL = new cNews();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }