Example #1
0
 public TestCreateCommand(TestAggregateId id)
 {
 }
Example #2
0
        public TestCreateCommand(TestAggregateId id)
        {

        }
Example #3
0
 public TestUpdateEvent(TestAggregateId id, string updatedFieldValue)
 {
     Id = id;
     UpdatedFieldValue = updatedFieldValue;
 }
Example #4
0
        public TestAggregateRoot(TestAggregateId id)
        {
            var @event = new TestCreateEvent(id);

            Apply(@event);
        }
Example #5
0
        public TestUpdateCommand(TestAggregateId id)
        {

        }
Example #6
0
 public TestCreateEvent(TestAggregateId id)
 {
     Id = id;
 }
Example #7
0
 public TestCreateEvent(TestAggregateId id)
 {
     Id = id;
 }
Example #8
0
 public TestUpdateEvent(TestAggregateId id, string updatedFieldValue)
 {
     Id = id;
     UpdatedFieldValue = updatedFieldValue;
 }
Example #9
0
 public TestUpdateCommand(TestAggregateId id)
 {
 }