Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BootProcedure"/> class.
 /// </summary>
 /// <param name="boundedContextConfiguration"><see cref="BoundedContextConfiguration"/> to use.</param>
 /// <param name="executionContextManager"><see cref="IExecutionContextManager"/> to use for <see cref="ExecutionContext"/>.</param>
 /// <param name="resourceConfiguration"><see cref="IResourceConfiguration">Configuration</see> of resources.</param>
 public BootProcedure(
     BoundedContextConfiguration boundedContextConfiguration,
     IExecutionContextManager executionContextManager,
     IResourceConfiguration resourceConfiguration)
 {
     _executionContextManager     = executionContextManager;
     _resourceConfiguration       = resourceConfiguration;
     _boundedContextConfiguration = boundedContextConfiguration;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApplicationBindings"/> class.
 /// </summary>
 /// <param name="boundedContextConfiguration"><see cref="BoundedContextConfiguration">Configuration</see> for the bounded context.</param>
 public ApplicationBindings(BoundedContextConfiguration boundedContextConfiguration)
 {
     _boundedContextConfiguration = boundedContextConfiguration;
 }