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