Interface IEntityCreator

An interface used to allow caller to implement a post create processing

interface IEntityCreator {
    _postCreateProcessing(): void;
}

Methods

  • A private method that is ran after entity creation. If need to raise error, raise and EntityCreationError

    Returns void