-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Readme to include Objectives
- Loading branch information
CJenkins2
committed
Sep 15, 2017
1 parent
c527e8b
commit 9eeef54
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# Talks.CodeToDiFor | ||
Demo code for "Code to DI for" - http://developingux.com/2016/03/14/code-to-di-for-in-ft-worth/ | ||
|
||
Objectives: | ||
- common dependency injection patterns | ||
- Constructor Injection | ||
- Property / Method Injection | ||
- LifeCycles (Singleton/Transient/Per Request) | ||
- various IoC/DI frameworks | ||
- practical steps and guidance | ||
- Using Conventions / Autoregistration | ||
- Avoiding "Common Service Locator" Pattern | ||
- Compositional Root | ||
- real world scenarios | ||
- DI with Static Singletons | ||
- DI with Existing Types | ||
- DI with Collections (IList<T>) | ||
- Specifying Injected Dependencies | ||
- Forwarder pattern (for caching/retry logic on edges) | ||
- impact to Unit Testing | ||
- DI with Mocks / Fakes | ||
- application architecture | ||
- Compositional Root (Favor composition over inheritance) | ||
- Essentailly: realized SOLID |