public ActionResult Index(GoogleData data) { if (!string.IsNullOrEmpty(data.Query) && !string.IsNullOrEmpty(data.SearchFor)) { data.isResult = true; data.Result = GoogleJobs.SpawnSomeJobs(data.Query, data.SearchFor); } else data.isResult = false; return View(data); }
public ActionResult Index(GoogleData data) { if (!string.IsNullOrEmpty(data.Query) && !string.IsNullOrEmpty(data.SearchFor)) { data.isResult = true; data.Result = GoogleJobs.SpawnSomeJobs(data.Query, data.SearchFor); } else { data.isResult = false; } return(View(data)); }