Exemplo n.º 1
0
 public JsonResult Create(RankModel rank)
 {
     _rankService.Create(rank);
     return SuccessResult();
 }
Exemplo n.º 2
0
 public IHttpActionResult Create(RankModel rank)
 {
     _rankService.Create(rank, _externalUserId);
     return Json(true);
 }