public async Task <IActionResult> GetAll() { try { var items = await _ClienteService.GetAll(); return(Ok(items)); } catch (Exception ex) { return(StatusCode(500, ex)); } }