예제 #1
0
        public ShowBreedBreakdownReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService)
        {
            _breedEntryService   = breedEntryService;
            _reportViewerService = reportViewerService;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            DogShowReportCommands.ShowBreedBreakdownReportCommand.RegisterCommand(commandHandler);
        }
        public ShowHandlerEntryNumberLabelsReportCommandExecutor(IReportViewerService reportViewerService, IHandlerEntryService handlerEntryService)
        {
            _handlerEntryService = handlerEntryService;
            _reportViewerService = reportViewerService;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            DogShowReportCommands.ShowHandlerEntryNumberLabelsReportCommand.RegisterCommand(commandHandler);
        }
예제 #3
0
        public PrintCertificatesForHandlerRelatedChallengeResultsExecutor(IReportViewerService reportViewerService, IHandlerEntryService handlerEntryService)
        {
            _reportViewerService = reportViewerService;
            _handlerEntryService = handlerEntryService;

            commandHandler = new DelegateCommand <IChallengeResultCollection <IChallengeResult> >(ExecuteCommand);
            PrintCommands.PrintCertificatesForHandlerRelatedChallengeResults.RegisterCommand(commandHandler);
        }
        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 ReportViewerController(IReportViewerService _service, INomenclatureService _nomService,
                               ICourtDepartmentService _departmentService,
                               ICommonService _commonService,
                               IConfiguration _configuration)
 {
     service           = _service;
     nomService        = _nomService;
     departmentService = _departmentService;
     commonService     = _commonService;
     configuration     = _configuration;
 }
예제 #6
0
 public ReportViewerController()
 {
     _reportService = new ReportViewerService();
 }
 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)
 {
 }