Example #1
0
 public IActionResult CreateDeveloper([FromBody] Developer developer)
 {
     //do send a message to the queue where the developer will actually be created
     if (_service.AddDeveloper(developer))
     {
         return(new OkResult());
     }
     return(BadRequest());
 }