Esempio n. 1
0
        public async Task <bool> DumpOneHuaweiStat()
        {
            var stat = FlowHuaweis.Pop();

            if (stat.Item1 != null)
            {
                await _huaweiRepository.ImportOneAsync(stat.Item1);
            }
            if (stat.Item2 != null)
            {
                await _rrcHuaweiRepository.ImportOneAsync(stat.Item2);
            }
            if (stat.Item3 != null)
            {
                await _qciHuaweiRepository.ImportOneAsync(stat.Item3);
            }
            if (stat.Item4 != null)
            {
                await _prbHuaweiRepository.ImportOneAsync(stat.Item4);
            }

            return(true);
        }