MVC Actions and Object Oriented

      כאשר אנחנו רוצים להגדיר Actions המקבלים אובייקטים ועושים עליהם מניפולציה ומחזירים תשובה כלשהי (שזה פחות או יותר התפקיד של כמעט כל Action) נכתוב קוד בסגנון הזה public class HomeController : Controller {     public ActionResult SendObject1(Employee person)     {         //……         //……         //……         return Json(person, JsonRequestBehavior.AllowGet);     } }   public class Employee {     public int […]


    • עמוד 1 מתוך 1