-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Epic / Domain Layer #71
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- add DomainConfiguration - add IDomainModel and DomainModel implementation
- add a temp UsingPhaseArtifact fixture - add ApplicationContext property to LayerConfigurator for test setup - add ApplicationContext to IPhase for test setup - minor edits
- use extension in test setups
- change phase execution diagram to flowchart
- add ApplicationContext with internal set - change IsReady to property - remove ApplicationContext parameter from initialize - edit test case setups
- Add DomainModelBuilder with Descriptor and Configuration dependency
- remove DomainServiceDescriptor - remove AddServices phase from domain layer and service registration logic - edit domain DTOs - revert defafult business feature to register services manually
- refactor domain models and builder
- remove unused properties from model records - move model records to Domain.Model folder and namespace with seperate files - minor edits
- Add AssemblyModel which represents assemblies and contains TypeModels - DomainModel now contains AssemblyModels - minor edits
- modify phase execution order diagram
- remove adding entry assemblies from override feature - minor edits
- remove type is built conventions from `DomainBuilderOptions` - remove Type and Assembly descriptors
Feature / Domain Layer / Domain Model
- add interfaces data to `TypeModel` - edit business feature to register interfaces with implementations - add test case for interfaces not in domain should not be registered
- add assembly data to `TypeModel`
- add helper method for validating correct exception - add `HandledException` to type collection in `DefaultExceptionHandling` feature - fix not registering exceptions case
- remove service suffix from sample interfaces and classes - move shouldly helper to test service spec base - change InterfaceTypes to string hashset containing TypeModel.Id's
- edit business feature for registering scoped services - use `ShouldBeSameAs` helper in registering services tests - remove service suffix from ClassService => Class
- move IdFrom helper to typemodel - remove TypeModelIds hashset - minor edits
…nterfaces-with-implementation Feature / Domain Layer / Registering Interfaces With Implementation
dncsvr
approved these changes
Jan 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Implement domain layer and document domain section under architecture so that it
provides a base for convention based configuration on business domain objects.
Tasks
Additional Tasks