public Task RecordPropertySale([FromBody] PropertySold propertyEvent)
 {
     propertyEvent.SetRouteKey(propertyEvent.State);
     return(_messaging.PublishAsync(propertyEvent));
 }
 public void SouthEast(PropertySold propertySold)
 {
     Console.WriteLine(propertySold.ToIndentedJson());
 }