Ejemplo n.º 1
0
        public async Task <IActionResult> Get(long ClienteId)
        {
            try
            {
                var items = await _ClienteService.Get(ClienteId);

                return(Ok(items));
            }
            catch (Exception ex)
            {
                return(StatusCode(500, ex));
            }
        }