Finished sentence and fixed spelling mistake. (#1536)

This commit is contained in:
Gerard Gunnewijk 2020-12-08 12:39:39 +01:00 committed by GitHub
parent 0a4110a1e9
commit c59e522161
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,8 @@
using BuildingBlocks.EventBus.Events;
// Integration Events notes:
// An Event is “something that has happened in the past”, therefore its name has to be
// An Integration Event is an event that can cause side effects to other microsrvices, Bounded-Contexts or external systems.
// An Event is “something that has happened in the past”, therefore its name has to be past tense
// An Integration Event is an event that can cause side effects to other microservices, Bounded-Contexts or external systems.
public class ProductPriceChangedIntegrationEvent : IntegrationEvent
{
public int ProductId { get; private set; }
@ -20,4 +20,4 @@
OldPrice = oldPrice;
}
}
}
}