public CaptureNewDogViewViewModel(ICaptureNewDogView view, IGenderService genderService, IBreedService breedService, IGlobalContextService globalContextService)
     : base(view)
 {
     _genderService        = genderService;
     _breedService         = breedService;
     _globalContextService = globalContextService;
 }
 public SaveNewDogEntityCommandExecutor(IRegionManager regionManager, IEventAggregator eventAggregator, IDogRegistrationService service, IGlobalContextService globalContextService)
     : base(DogEntityCRUDCommands.SaveNewEntityCommand, regionManager, eventAggregator, service)
 {
     _globalContextService = globalContextService;
 }