Beispiel #1
0
 private void GeneralProductInformationUpdatedEventHandler(GeneralProductInformationUpdated e)
 {
     _name = e.Name;
 }
Beispiel #2
0
 public void UpdateGeneralInformation(String name, String description)
 {
     var e = new GeneralProductInformationUpdated(Id, name, description);
     ApplyEvent(e);
 }