Beispiel #1
0
 public EditEntryViewViewModel(IEditEntryView view, IDogShowService dogShowService, IBreedEntryService breedEntryService, IDogRegistrationService dogRegistrationService)
     : base(view)
 {
     _dogShowService         = dogShowService;
     _breedEntryService      = breedEntryService;
     _dogRegistrationService = dogRegistrationService;
 }
Beispiel #2
0
        public ShowBreedBreakdownReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService)
        {
            _breedEntryService   = breedEntryService;
            _reportViewerService = reportViewerService;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            DogShowReportCommands.ShowBreedBreakdownReportCommand.RegisterCommand(commandHandler);
        }
Beispiel #3
0
        public PrintCertificatesCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService)
        {
            _reportViewerService = reportViewerService;
            _breedEntryService   = breedEntryService;

            commandHandler = new DelegateCommand <IChallengeResultCollection <IChallengeResult> >(ExecuteCommand);
            PrintCommands.PrintCertificatesForDogRelatedChallengeResults.RegisterCommand(commandHandler);
        }
Beispiel #4
0
 public BreedEntryResultsViewViewModel(IBreedEntryResultsView view, IDogShowService dogShowService, IBreedService breedService, IBreedGroupService breedGroupService, IBreedEntryService breedEntryService)
     : base(view)
 {
     _dogShowService    = dogShowService;
     _breedGroupService = breedGroupService;
     _breedService      = breedService;
     _breedEntryService = breedEntryService;
 }
Beispiel #5
0
        public ExploreDogsViewViewModel(IExploreDogsView view, IDogRegistrationService service, IBreedEntryService breedEntryService)
            : base(view)
        {
            _service          = service;
            _beedEntryService = breedEntryService;

            RegistrationNumberFilterCriteria = "";
            BreedEntries = new ObservableCollection <IBreedEntryEntityWithAdditionalData>();
        }
        public ShowResultsSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService, string mode, CompositeCommand command)
        {
            _breedEntryService     = breedEntryService;
            _reportViewerService   = reportViewerService;
            _handlerEntryService   = handlerEntryService;
            _breedChallengeService = breedChallengeService;
            _mode = mode;

            commandHandler = new DelegateCommand <IDogShowEntity>(ExecuteCommand);
            command.RegisterCommand(commandHandler);
        }
 public BreedMultipleEntryService(IBreedEntryService breedEntryService)
 {
     _breedEntryService = breedEntryService;
 }
 public ExploreEntriesViewViewModel(IExploreEntriesView view, IBreedEntryService service)
     : base(view)
 {
     _service = service;
 }
 public MassUpdateNumbersGenerateNumbersViewViewModel(IMassUpdateNumbersView view, IBreedEntryService service)
     : base(view, service)
 {
 }
 public ShowBreedResultsJudgesSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService)
     : base(reportViewerService, breedEntryService, handlerEntryService, breedChallengeService, "JUDGE SHEET", DogShowReportCommands.ShowBreedResultsJudgesSheetReportCommand)
 {
 }
Beispiel #11
0
 public MassUpdateBreedEntryNumbersBaseViewViewModel(IMassUpdateNumbersView view, IBreedEntryService service)
     : base(view)
 {
     _service = service;
 }
 public ShowHandlerResultsStewardsSheetReportCommandExecutor(IReportViewerService reportViewerService, IBreedEntryService breedEntryService, IHandlerEntryService handlerEntryService, IBreedChallengeService breedChallengeService)
     : base(reportViewerService, breedEntryService, handlerEntryService, breedChallengeService, "STEWARD SHEET", DogShowReportCommands.ShowHandlerResultsStewardsSheetReportCommand)
 {
 }
Beispiel #13
0
 public SaveNewBreedEntryEntityCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IBreedEntryService service)
     : base(BreedEntryCRUDCommands.SaveNewEntityCommand, regionManager, eventAggregator, service)
 {
 }
 public DeleteExistingBreedEntityCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IBreedEntryService service)
     : base(BreedEntryCRUDCommands.DeleteExistingEntityCommand, regionManager, eventAggregator, service)
 {
 }
 public SaveBreedEntryClassEntryListCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IBreedEntryService service)
     : base(BreedEntryClassEntryListCommands.SaveBreedEntryClassEntryListCommand, regionManager, eventAggregator, service)
 {
 }