Example #1
0
 public ActionResult SaveEidt([FromBody] Sys_TableInfo tableInfo)
 {
     return(Json(Service.SaveEidt(tableInfo)));
 }
Example #2
0
 public ActionResult CreateVuePage([FromBody] Sys_TableInfo sysTableInfo, string vuePath)
 {
     return(Content(Service.CreateVuePage(sysTableInfo, vuePath)));
 }
Example #3
0
 public ActionResult CreateEntityModel([FromBody] Sys_TableInfo tableInfo)
 {
     return(Content(Service.CreateEntityModel(tableInfo)));
 }
Example #4
0
 public ActionResult CreatePage([FromBody] Sys_TableInfo sysTableInfo)
 {
     return(Content(Service.CreatePage(sysTableInfo)));
 }
 public async Task <ActionResult> SaveEidt([FromBody] Sys_TableInfo tableInfo)
 {
     return(Json(await Task.Run(() => Service.SaveEidt(tableInfo))));
 }
 public async Task <ActionResult> CreateEntityModel([FromBody] Sys_TableInfo tableInfo)
 {
     return(Content(await Task.Run(() => Service.CreateEntityModel(tableInfo))));
 }
 public async Task <ActionResult> CreateVuePage([FromBody] Sys_TableInfo sysTableInfo, string vuePath)
 {
     return(Content(await Task.Run(() => Service.CreateVuePage(sysTableInfo, vuePath))));
 }
Example #8
0
 public async Task <ActionResult> CreatePage([ModelBinder] Sys_TableInfo sysTableInfo)
 {
     return(Content(await Task.Run(() => Service.CreatePage(sysTableInfo))));
 }