Beispiel #1
0
 public void RemoveRoom(int RoomId)
 {
     try
     {
         Functions F = new Functions();
         F.RemoveRoomFromGroup(RoomId,mvarID);
         F.Dispose();
     }
     catch(Exception Err)
     {
         throw new ApplicationException(Err.Message,Err.InnerException);
     }
 }