예제 #1
0
        public void AskNeighbourForMeetings(String clientName, String clientURL)
        {
            ClientInterface chosenClient = (ClientInterface)Activator.GetObject(typeof(ClientInterface), clientURL);
            Dictionary <String, AbstractMeeting> meetings = chosenClient.getAllMeetings();

            this.AllMeetings = meetings;
            this.UpdateMeetingsFromClient();
        }