예제 #1
0
        public RockListController(IJSONModificationService fileService, IMessageService messageService, IRockListView view, ContentEditorViewModel viewModel)
        {
            if (fileService == null)
            {
                throw new ArgumentNullException("fileService");
            }

            this.fileService            = fileService;
            this.messageService         = messageService;
            this.view                   = view;
            this.contentEditorViewModel = viewModel;
        }