Example #1
0
        public async Task <IActionResult> Get(long ProductoId)
        {
            try
            {
                var items = await _ProductoService.Get(ProductoId);

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