예제 #1
0
파일: Oyster.cs 프로젝트: CarverLab/Oyster
 public void DeleteRecordingById(int RecordingId)
 {
     try
     {
         Functions F = new Functions();
         F.DeleteRecording(RecordingId);
         F.Dispose();
     }
     catch(Exception Err)
     {
         throw new Exception(Err.Message);
     }
 }