GroupNotice IGroupNoticesInterface.this[UUI requestingAgent, UUID groupNoticeID]
 {
     get
     {
         var notice = new GroupNotice();
         if (!Notices.TryGetValue(requestingAgent, groupNoticeID, out notice))
         {
             throw new KeyNotFoundException();
         }
         return(notice);
     }
 }