public IActionResult PostEmprestimo([FromBody] EmprestimoDTO emprestimo) { try { ItemAppService.Emprestar(emprestimo); return(Created(String.Empty, emprestimo)); } catch (Exception ex) { return(BadRequest(ex.Message)); } }