Esempio n. 1
0
        public MeetingViewModel Create(Meeting meeting)
        {
            if (meeting == null)
            {
                throw new ArgumentNullException("meeting");
            }

            return(new MeetingViewModel(meeting, _locator.GetTools(), _locator.VideoConfViewModel, _sharedDataService, _locator.Mode));
        }