// PUT api/emprestimo/5
 public bool Put(DTOEmprestimo produto)
 {
     BLLEmprestimo BLLobjeto = new BLLEmprestimo();
     return BLLobjeto.AlterarEmprestimo(produto);
 }