示例#1
0
 public void DeleteRecordingById(int RecordingId)
 {
     try
     {
         Functions F = new Functions();
         F.DeleteRecording(RecordingId);
         F.Dispose();
     }
     catch(Exception Err)
     {
         throw new Exception(Err.Message);
     }
 }