Esempio n. 1
0
 public JsonNetResult <IEnumerable <EntityInfo> > GetBreadCrumbsList(string entityTypeCode, long entityId, long?parentEntityId, string actionCode) => EntityObjectService.GetBreadCrumbsList(entityTypeCode, entityId, parentEntityId, actionCode).ToList();
Esempio n. 2
0
 public JsonResult GetBreadCrumbsList(string entityTypeCode, long entityId, long?parentEntityId, string actionCode)
 {
     return(Json(EntityObjectService.GetBreadCrumbsList(entityTypeCode, entityId, parentEntityId, actionCode)?.ToList()));
 }