// GET: Emprestimos/Details/5 public ActionResult Details(int id) { EmprestimoViewModel emprestimoViewModel = Mapper.Map <Emprestimo, EmprestimoViewModel>(_wcfServiceClient.GetEmprestimoById(id)); emprestimoViewModel.ClienteNome = _wcfServiceClient.GetClienteById(emprestimoViewModel.ClienteId).Nome; emprestimoViewModel.MaterialDescricao = _wcfServiceClient.GetMaterialById(emprestimoViewModel.MaterialId).Descricao; emprestimoViewModel.DataDevolucaoDescricao = emprestimoViewModel.DataDevolucao != DateTime.MinValue ? emprestimoViewModel.DataDevolucao.ToString("dd/MM/yyyy") : "-"; emprestimoViewModel.DataDevolverDescricao = emprestimoViewModel.DataDevolver.ToString("dd/MM/yyyy"); emprestimoViewModel.DevolvidoDescricao = emprestimoViewModel.Devolvido ? "Sim" : "Não"; return(View(emprestimoViewModel)); }