Example #1
0
 public void AddRecording(int RecordingId)
 {
     try
     {
         Functions F = new Functions();
         F.AddRecording(RecordingId,mvarID);
         F.Dispose();
     }
     catch(Exception Err)
     {
         throw new ApplicationException(Err.Message,Err.InnerException);
     }
 }