public ActionResult Delete(Guid id, EmprestimoVM emprestimoVM)
 {
     try
     {
         _business.Deletar(Mapper.Map <Emprestimo>(emprestimoVM));
         return(RedirectToAction("Index"));
     }
     catch (Exception e)
     {
         ModelState.AddModelError("", e.Message);
         return(View(emprestimoVM));
     }
 }