public JsonResult Get()
        {
            List <Account> lstAccounts;

            lstAccounts = AccountsFacade.GetAll();

            return(Json(lstAccounts));
        }
Exemplo n.º 2
0
        public JsonResult Get()
        {
            List <Account> lstAccounts;

            lstAccounts = AccountsFacade.GetAll();

            //This line is different !!
            return(new JsonConvert.SerializeObject(lstAccounts));
        }