Ejemplo n.º 1
0
 public EditEntryViewViewModel(IEditEntryView view, IDogShowService dogShowService, IBreedEntryService breedEntryService, IDogRegistrationService dogRegistrationService)
     : base(view)
 {
     _dogShowService         = dogShowService;
     _breedEntryService      = breedEntryService;
     _dogRegistrationService = dogRegistrationService;
 }
 public CaptureMultipleNewHandlerEntryViewViewModel(ICaptureMultipleNewHandlerEntryView view, IDogShowService dogShowService, IDogRegistrationService dogRegistrationService, IHandlerEntryService handlerEntryService, IHandlerClassService handlerClassService)
     : base(view)
 {
     _dogShowService         = dogShowService;
     _dogRegistrationService = dogRegistrationService;
     _handlerEntryService    = handlerEntryService;
     _handlerClassService    = handlerClassService;
 }
Ejemplo n.º 3
0
        public ExploreDogsViewViewModel(IExploreDogsView view, IDogRegistrationService service, IBreedEntryService breedEntryService)
            : base(view)
        {
            _service          = service;
            _beedEntryService = breedEntryService;

            RegistrationNumberFilterCriteria = "";
            BreedEntries = new ObservableCollection <IBreedEntryEntityWithAdditionalData>();
        }
 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;
 }
 public SaveExistingDogEntityCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IDogRegistrationService dogRegistrationService)
     : base(DogEntityCRUDCommands.SaveExistingEntityCommand, regionManager, eventAggregator, dogRegistrationService)
 {
 }
 public SaveNewDogEntityCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IDogRegistrationService service, IGlobalContextService globalContextService)
     : base(DogEntityCRUDCommands.SaveNewEntityCommand, regionManager, eventAggregator, service)
 {
     _globalContextService = globalContextService;
 }