public string NewProductWithDiscussion(NewProductCommand command)
 {
     return this.NewProductWith(command.TenantId, command.ProductOwnerId, command.Name, command.Description,
         RequestDiscussionIfAvailable());
 }
 public string NewProduct(NewProductCommand command)
 {
     return NewProductWith(command.TenantId, command.ProductOwnerId, command.Name, command.Description,
         DiscussionAvailability.NotRequested);
 }