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