public void MyAboutUpdate(MyAbout myAbout) { _myAboutDal.Update(myAbout); }
protected void OnAboutActionActivated(object sender, EventArgs e) { MyAbout aWindow = new MyAbout(); aWindow.ShowNow(); }
public void MyAboutDelete(MyAbout myAbout) { _myAboutDal.Delete(myAbout); }
public void MyAboutAddBl(MyAbout myAbout) { _myAboutDal.Insert(myAbout); }
public void Add(MyAbout myAbout) { _myAboutDal.Add(myAbout); }
public ActionResult Update(MyAbout myAbout) { myAboutManager.Update(myAbout); return(RedirectToAction("Index")); }
public ActionResult Add(MyAbout myAbout) { myAboutManager.Add(myAbout); return(RedirectToAction("Index")); }