Пример #1
0
        public async Task <IActionResult> GetTipoIdentificacion()
        {
            var result = await Task.Run(() => context.GetAllTipoIdentificacion());

            if (result == null)
            {
                return(NotFound("No Existe tipo identificacion"));
            }

            return(Ok(result));
        }