GetSections() public method

Gets sections details.
public GetSections ( string accessToken, string userId ) : Newtonsoft.Json.Linq.JArray
accessToken string Access token has to send
userId string User id has to send
return Newtonsoft.Json.Linq.JArray
 public ActionResult Index()
 {
     ViewBag.Title = "Classes";
     var sectionService = new SectionDataService();
     dynamic sections = sectionService.GetSections(SessionInfo.Current.AccessToken, SessionInfo.Current.UserId);
     var model = new SectionListViewModel {Sections = sections};
     return View(model);
 }