Пример #1
0
        public async Task <bool> DumpOneStationInfo()
        {
            var stat = Stations.Pop();

            if (stat == null)
            {
                throw new NullReferenceException("stat is null!");
            }
            await _stationDictionary
            .UpdateOneInUse <IStationDictionaryRepository, StationDictionary, StationDictionaryExcel>(stat);

            return(true);
        }