public ActionResult AddTalent(Talent p)
 {
     p.Name = "Taner Saydam";
     p.About = "Yazılım yapmayı seviyorum";
     tm.TalentAdd(p);
     return RedirectToAction("Index");
 }
 public ActionResult AddTalent(Talent talent)
 {
     talentManager.TalentAdd(talent);
     return(RedirectToAction("Index"));
 }
Example #3
0
 public ActionResult AddTalent(Talent p)
 {
     tm.TalentAdd(p);
     return(RedirectToAction("Index"));
 }