예제 #1
0
        public void Update([FromBody] Account account)
        {
            JsonMethods rep = new JsonMethods();

            rep.UpdateAccount(account);
        }
예제 #2
0
 public ActionResult Update(Account account)
 {
     JsonRepository.JsonMethods rep = new JsonMethods();
     rep.UpdateAccount(account);
     return(RedirectToAction("Index"));
 }