public string NewProductWithDiscussion(NewProductCommand command)
 {
     return NewProductWith(command.TenantId, command.ProductOwnerId, command.Name, command.Description, RequestDiscussionIfAvailable());
 }
Ejemplo n.º 2
0
 public string NewProductWithDiscussion(NewProductCommand command)
 {
     return(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);
 }
Ejemplo n.º 4
0
 public string NewProduct(NewProductCommand command)
 {
     return(NewProductWith(command.TenantId, command.ProductOwnerId, command.Name, command.Description, DiscussionAvailability.NotRequested));
 }