public ActionResult FirmaDelete(string id, string token) { token = Session["Token"].ToString(); FirmaServisClient fsc = new FirmaServisClient(); fsc.FirmaDelete(fsc.FirmaBul(id), token); return(RedirectToAction("Index", "Firma")); }
public ActionResult FirmaUpdate(string id) { FirmaServisClient fsc = new FirmaServisClient(); FirmaViewModel fvm = new FirmaViewModel(); fvm.firma = fsc.FirmaBul(id); return(View("FirmaUpdate", fvm)); }