public void Delete([FromRoute] string endpoint)
 {
     _pushService.Delete(WebUtility.UrlDecode(endpoint));
 }
예제 #2
0
 public ActionResult Delete(int[] ids)
 {
     return(new JsonNetResult(PushService.Delete(ids)));
 }