Beispiel #1
0
 public static EventEntity MakeEventEntity(CreateDepartmentCmd cmd)
 {
     return(new EventEntity {
         UserId = cmd.UserId,
         Body = new DepartmentCreatedEvt(cmd)
     });
 }
Beispiel #2
0
 public DepartmentCreatedEvt(CreateDepartmentCmd cmd)
 {
     Name = cmd.Name;
 }