public IHttpActionResult ConfirmAbonnement(int id) { Abonnement abonnement = abonnementService.GetById(id); if (abonnement == null) { return(NotFound()); } if (!ModelState.IsValid) { return(BadRequest("Not a valid model")); } abonnementService.confirmAbonnement(id); abonnementService.Commit(); return(Ok()); }