Exemplo n.º 1
0
 public Boolean Delete(tbl_000_H_ITEM_FDC record)
 {
     try
     {
         if (record == null)
         {
             throw new Exception("Invalid Parameter!");
         }
         if (!itfdcdal.IsExistID(record.YEARUSED, record.ItemNo, record.DepnType))
         {
             throw new Exception("Record does not exist!");
         }
         return(itfdcdal.Delete(record));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }