Ejemplo n.º 1
0
        public async Task <IActionResult> Get(string id)
        {
            var customer = await _informationService.Get(id);

            if (customer == null)
            {
                return(NotFound());
            }
            return(Ok(customer));
        }