Exemplo n.º 1
0
 public JsonNetResult <bool> CheckExistence(string entityTypeCode, int entityId) => EntityObjectService.CheckExistence(entityTypeCode, entityId);
Exemplo n.º 2
0
 public JsonResult CheckExistence(string entityTypeCode, int entityId)
 {
     return(Json(entityTypeCode == "null" || EntityObjectService.CheckExistence(entityTypeCode, entityId)));
 }