public async Task <IActionResult> Index(string term = "")
 {
     return(View(await _estateService.GetAllEstates(term)));
 }
Example #2
0
 public IEnumerable <Estate> GetAllEstates()
 {
     return(_estateService.GetAllEstates());
 }