Exemplo n.º 1
0
 public CartItemDetail(CartItemDetailAddCommand command, string languageId, string createdUid)
 {
     Id         = Common.Common.GenerateGuid();
     ProductId  = command.ProductId;
     Name       = command.Name;
     LanguageId = languageId;
     CreatedUid = createdUid;
 }
Exemplo n.º 2
0
 public CartItemDetail(CartItemDetailAddCommand command)
 {
     Id        = Common.Common.GenerateGuid();
     ProductId = command.ProductId;
     Name      = command.Name;
 }