public async Task <IActionResult> Delete(string id)
        {
            try
            {
                if (string.IsNullOrEmpty(id))
                {
                    return(NotFound());
                }

                await _emprestimoBusiness.Delete(Convert.ToInt32(id));

                return(Ok("Item Deletado"));
            }
            catch (Exception e)
            {
                return(BadRequest($"{e.Message}"));
            }
        }