コード例 #1
0
        public PrintCertificatesForHandlerRelatedChallengeResultsExecutor(IReportViewerService reportViewerService, IHandlerEntryService handlerEntryService)
        {
            _reportViewerService = reportViewerService;
            _handlerEntryService = handlerEntryService;

            commandHandler = new DelegateCommand <IChallengeResultCollection <IChallengeResult> >(ExecuteCommand);
            PrintCommands.PrintCertificatesForHandlerRelatedChallengeResults.RegisterCommand(commandHandler);
        }
        public ShowHandlerEntryNumberLabelsReportCommandExecutor(IReportViewerService reportViewerService, IHandlerEntryService handlerEntryService)
        {
            _handlerEntryService = handlerEntryService;
            _reportViewerService = reportViewerService;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            DogShowReportCommands.ShowHandlerEntryNumberLabelsReportCommand.RegisterCommand(commandHandler);
        }
 public CaptureMultipleNewHandlerEntryViewViewModel(ICaptureMultipleNewHandlerEntryView view, IDogShowService dogShowService, IDogRegistrationService dogRegistrationService, IHandlerEntryService handlerEntryService, IHandlerClassService handlerClassService)
     : base(view)
 {
     _dogShowService         = dogShowService;
     _dogRegistrationService = dogRegistrationService;
     _handlerEntryService    = handlerEntryService;
     _handlerClassService    = handlerClassService;
 }
        public ShowHandlerResultsSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService, string mode, CompositeCommand command)
        {
            _reportViewerService = reportViewerService;
            _handlerEntryService = handlerEntryService;
            _mode = mode;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            command.RegisterCommand(commandHandler);
        }
コード例 #5
0
 public EditHandlerEntryViewViewModel(IEditHandlerEntryView view, IDogShowService dogShowService, IHandlerRegistrationService handlerRegistrationService, IHandlerEntryService handlerEntryService, IDogRegistrationService dogRegistrationService, IHandlerClassService handlerClassService)
     : base(view)
 {
     _dogShowService             = dogShowService;
     _handlerEntryService        = handlerEntryService;
     _dogRegistrationService     = dogRegistrationService;
     _handlerRegistrationService = handlerRegistrationService;
     _handlerClassService        = handlerClassService;
 }
コード例 #6
0
 public HandlerMultipleEntryService(IHandlerEntryService handlerEntryService)
 {
     _handlerEntryService = handlerEntryService;
 }
 public ShowBreedResultsJudgesSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService)
     : base(reportViewerService, breedEntryService, handlerEntryService, breedChallengeService, "JUDGE SHEET", DogShowReportCommands.ShowBreedResultsJudgesSheetReportCommand)
 {
 }
 public ShowHandlerResultsStewardsSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService)
     : base(reportViewerService, breedEntryService, handlerEntryService, breedChallengeService, "STEWARD SHEET", DogShowReportCommands.ShowHandlerResultsStewardsSheetReportCommand)
 {
 }
コード例 #9
0
 public ExploreHandlerEntriesViewViewModel(IExploreHandlerEntriesView view, IHandlerEntryService service)
     : base(view)
 {
     _service = service;
 }
コード例 #10
0
 public DeleteExistingHandlerEntityCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IHandlerEntryService service)
     : base(HandlerEntryCRUDCommands.DeleteExistingEntityCommand, regionManager, eventAggregator, service)
 {
 }
 public MassUpdateHandlerEntryNumbersViewViewModel(IMassUpdateHandlerNumbersView view, IHandlerEntryService service)
     : base(view)
 {
     _service = service;
 }