Exemple #1
0
        public async Task <bool> AddStopsToDatabase()
        {
            try
            {
                string response = await _getData.GetJsonString(AppSettings.StopsListJson);

                if (string.IsNullOrEmpty(response))
                {
                    return(false);
                }

                JArray linesArray = JArray.Parse(response);

                LastId = await _stopsRepository.GetLastId();

                if (LastId != 0)
                {
                    await _stopsRepository.DeleteAll();
                }

                foreach (var stop in linesArray)
                {
                    await _stopsRepository.Create(new StopRepo
                    {
                        Id           = LastId + 1,
                        StopName     = _maps.MapUnicodeCharsToPolishChars(stop.Value <string>("nazwa")),
                        StopNumbers  = stop.Value <string>("numery"),
                        VehiclesList = _maps.MapUnicodeCharsToPolishChars(stop.Value <string>("kierunki"))
                    });

                    LastId++;
                }

                return(true);
            }
            catch (Exception ex)
            {
                return(false);
            }
        }