public ActionResult Edit(Guid id) { var technology = technologyService.Find(id); if (technology == null) { return(HttpNotFound()); } return(View(technology)); }
public ActionResult Tags(string query) { var list = _technologyService.Find(query).ToArray(); return(new JsonNetResult(list, HttpStatusCode.OK)); }