Esempio n. 1
0
 public ActionResult AcknowledgeNotification(string id)
 {
     if (notificationService.Acknowledge(id))
     {
         return(NoContent());
     }
     return(NotFound());
 }