public MainViewModel()
        {
            loginservice           = new LoginServiceSQL();
            iconPick               = new IconPick();
            calcuteConverter       = new CalcuteConverter();
            currentWeatherService  = new CurrentWeatherService();
            ShowWeatherCommand     = new ButtonCommandBase(ShowWeather);
            SetFavoriteCityCommand = new ButtonCommandBase(addFavoriteCity);
            forecastService        = new ForecastService();
            CityOutput             = new ObservableCollection <string>();

            ShowWeatherStartup();
        }
 public PokemonCaughtController(LoginServiceSQL pokeLog)
 {
     _PokeLogsFromSQL = pokeLog;
 }
Example #3
0
 public LoginSQLController(LoginServiceSQL users)
 {
     _UsersFromSQL = users;
 }