public async Task <IActionResult> Get()
        {
            var all = await _globalService.All();

            return(Ok(all));
        }