Exemplo n.º 1
0
        public Post(string title, string content)
        {
            var @event = new PostCreated(title, content, DateTime.UtcNow);

            Apply(@event);

            AppendEvent(@event);
        }
Exemplo n.º 2
0
        public Post(string title, string content)
        {
            var @event = new PostCreated(title, content, DateTime.UtcNow);

            Apply(@event);

            AppendEvent(@event);
        }
Exemplo n.º 3
0
 public void Apply(PostCreated @event)
 {
     Title     = @event.Title;
     Content   = @event.Content;
     CreatedOn = @event.CreatedOn;
 }
Exemplo n.º 4
0
 public void Apply(PostCreated @event)
 {
     Title = @event.Title;
     Content = @event.Content;
     CreatedOn = @event.CreatedOn;
 }