-
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
Feature / Domain Layer / Layer And Configuration #66
Merged
dncsvr
merged 46 commits into
mouseless:epic/domain-layer
from
dncsvr:feature/domain-layer/layer-and-configuration
Oct 31, 2023
Merged
Feature / Domain Layer / Layer And Configuration #66
dncsvr
merged 46 commits into
mouseless:epic/domain-layer
from
dncsvr:feature/domain-layer/layer-and-configuration
Oct 31, 2023
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
cihandeniz
reviewed
Oct 17, 2023
- 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
- refactor BusinessExtensions - types having With() method are transient
cihandeniz
reviewed
Oct 31, 2023
src/blueprints/Do.Blueprints.Service.Application/Business/BusinessExtensions.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Business/BusinessExtensions.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Business/Default/DefaultBusinessFeature.cs
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Business/Default/DefaultBusinessFeature.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Domain/DomainLayer.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Domain/DomainDescriptor.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Domain/Model/DomainModel.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Domain/Model/ParameterModel.cs
Outdated
Show resolved
Hide resolved
src/blueprints/Do.Blueprints.Service.Application/Domain/Model/TypeModel.cs
Outdated
Show resolved
Hide resolved
- fix add transient and scoped with factory - edit docs
- move DomainModel build logic to constructor - minor edits
- remove DomainDescriptor - edit DomainLayer documentation
cihandeniz
previously approved these changes
Oct 31, 2023
cihandeniz
approved these changes
Oct 31, 2023
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 a domain layer that provides a
DomainModel
configuration object.Tasks
ApplicationContext
from LayerConfiguratorDo.Blueprints.Service
phase
diagram which shows order ofexecution
DomainLayer
implementation toDo.Blueprints.Service.Application
project
DomainModel
and construction processConfigurationOverrider
inTest.Blueprint.Service.Application
tomanually build
DomainModel
Additional Tasks
DomainModel
ConfigurationOverrider