public void AddWeather(WeatherBase weather)
        {
            TableOperation add = TableOperation.Insert(weather);

            _table.Execute(add);
        }
        public void AddOrReplaceWeather(WeatherBase weather)
        {
            TableOperation add = TableOperation.InsertOrReplace(weather);

            _table.Execute(add);
        }