public JsonResult Get(int id) { var Endereco = _EnderecoService.FindById(id); string json = JsonConvert.SerializeObject(Endereco); return(Json(json)); }