public void RemoveRoom(string roomName) { var room = RoomCollection.Find(p => p.Name == roomName); RoomCollection.Remove(room); }