コード例 #1
0
 public string NewProductWithDiscussion(NewProductCommand command)
 {
     return this.NewProductWith(command.TenantId, command.ProductOwnerId, command.Name, command.Description,
         RequestDiscussionIfAvailable());
 }
コード例 #2
0
 public string NewProduct(NewProductCommand command)
 {
     return NewProductWith(command.TenantId, command.ProductOwnerId, command.Name, command.Description,
         DiscussionAvailability.NotRequested);
 }