Exemplo n.º 1
0
 public async Task <JsonResult> GetAsync(string pathInfo)
 {
     return(_fabricStore.IsPathCollection(pathInfo)
         ? Json(await _fabricStore.GetDataPageCollection(pathInfo), _fabricStore.Database.SerializerSettings)
         : Json(await _fabricStore.GetDataPage(pathInfo), _fabricStore.Database.SerializerSettings));
 }