示例#1
0
 public CreateProductCommand(string title, string description, int quantity, string size, EStatus status, EFreight freight, string imageUrl, Guid userId)
 {
     Title       = title;
     Description = description;
     Quantity    = quantity;
     Size        = size;
     Status      = status;
     Freight     = freight;
     ImageUrl    = imageUrl;
     UserId      = UserId;
 }
示例#2
0
 public Product(Guid id, string title, string description, int quantity, string size, EStatus status, EFreight freight, string imageUrl, Guid userId)
 {
     Id          = id;
     Title       = title;
     Description = description;
     Quantity    = quantity;
     Size        = size;
     Status      = status;
     Freight     = freight;
     ImageUrl    = imageUrl;
     UserId      = userId;
 }
示例#3
0
        public ProductCreatedEvent(Guid id, string title, string description, int quantity, string size, EStatus status, EFreight freight, string imageUrl)
        {
            Title       = title;
            Description = description;
            Quantity    = quantity;
            Size        = size;
            Status      = status;
            Freight     = freight;
            ImageUrl    = imageUrl;

            AggregateId = id;
        }