public HttpResponseMessage Post(string type, [FromBody] string @event)
 {
     try
     {
         return(_bookingEngine.CreateTestData(type, @event).GetContentResult());
     }
     catch (OpenBookingException obe)
     {
         return(obe.ErrorResponseContent.GetContentResult());
     }
 }
 public IActionResult TestInterfaceCreate([FromServices] IBookingEngine bookingEngine, string type, [FromBody] string @event)
 {
     try
     {
         return(bookingEngine.CreateTestData(type, @event).GetContentResult());
     }
     catch (OpenBookingException obe)
     {
         return(obe.ErrorResponseContent.GetContentResult());
     }
 }