public ShellViewModel(ILocationWeatherService locationWeatherService)
 {
     _locationWeatherService = locationWeatherService;
     InitializeCommands();
 }
		public ShellViewModelTest()
		{
			_locationWeatherServiceMock = Substitute.For<ILocationWeatherService>();
			_sut = new ShellViewModel(_locationWeatherServiceMock);
		}