Esempio n. 1
0
 public InShowResultsViewViewModel(IInShowResultsView view, IDogShowService dogShowService, IInShowChallengeResultsService inShowChallengeResultsService, IShowChallengeService inShowChallengeService)
     : base(view)
 {
     _dogShowService = dogShowService;
     _inShowChallengeResultsService = inShowChallengeResultsService;
     _inShowChallengeService        = inShowChallengeService;
 }
        public ShowInShowResultsSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService, IShowChallengeService showChallengeService, string mode, CompositeCommand command)
        {
            _breedEntryService     = breedEntryService;
            _reportViewerService   = reportViewerService;
            _handlerEntryService   = handlerEntryService;
            _breedChallengeService = breedChallengeService;
            _showChallengeService  = showChallengeService;
            _mode = mode;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            command.RegisterCommand(commandHandler);
        }
 public ShowInShowResultsJudgesSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService, IShowChallengeService showChallengeService)
     : base(reportViewerService, breedEntryService, handlerEntryService, breedChallengeService, showChallengeService, "JUDGE SHEET", DogShowReportCommands.ShowInShowResultsJudgesSheetReportCommand)
 {
 }