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 […]


    Import files from git using CSharp

    לאחרונה יצא לי להתעסק בפרויקט מעניין, שבמסגרתו הייתי צריך לשאוב מידע מקבצי md הנמצאים בתוך git. לאחר קצת חיפושים ושיטוטים, מצאתי את ה – Nuget הבא. ראשית צריך לקבל גישה ל – reposetory שממנו נרצה לשאוב את המידע. var client = new GitHubClient(new ProductHeaderValue("Stam-Data")); client.Credentials = new Credentials("USER", "PWD");   var current = client.Repository.GetAllForCurrent().Result; var repository = current.ElementAt(0); […]