Exemple #1
0
 public CreateNewImageCommand(int imageId, string imageLink, bool profileImage, Models.Shop.Product product)
 {
     ImageId      = imageId;
     ImageLink    = imageLink;
     ProfileImage = profileImage;
     Product      = product;
 }
 public UpdateCommentCommand(int commentId, string commentContent, Models.Shop.Product product, int userId)
 {
     CommentId      = commentId;
     CommentContent = commentContent;
     Product        = product;
     UserId         = userId;
 }
Exemple #3
0
 public CommentCreatedEvent(int commentId, string commentContent, Models.Shop.Product product, int userId)
 {
     CommentId      = commentId;
     CommentContent = commentContent;
     Product        = product;
     UserID         = userId;
     AggregateId    = commentId;
 }
Exemple #4
0
 public ImageUpdatedEvent(int imageId, string imageLink, bool profileImage, Models.Shop.Product product)
 {
     ImageId      = imageId;
     ImageLink    = imageLink;
     ProfileImage = profileImage;
     Product      = product;
     AggregateId  = imageId;
 }