// GET: Vendedores/Details/5
 public async Task <ActionResult> Details(Guid id)
 {
     return(View(await _vendedorService.DetailsAsync(id)));
 }