public async Task <ActionResult <IEnumerable <Radio> > > GetRadios()
        {
            var helper = new RadioHelper(_context);
            await helper.GetLocations();

            return(await _context.Radios.ToListAsync());
        }