Ejemplo n.º 1
0
 public ActionResult <Speaker> UpdateSpeaker(SpeakerForCreate updatedSpeaker)
 {
     if (ModelState.IsValid)
     {
         //add in db
         //return CreatedAtAction()
     }
     return(Ok());
 }
Ejemplo n.º 2
0
 public ActionResult <Speaker> PatchSpeaker(SpeakerForCreate updatedSpeaker)
 {
     return(Ok());
 }