Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created April 24, 2021 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manoj-choudhari-git/53aa76953abec191590614b1e5eba9bc to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/53aa76953abec191590614b1e5eba9bc to your computer and use it in GitHub Desktop.
All 4 interfaces for demo of dependency injection
interface IGetCreatedTime
{
DateTime GetCreatedTime();
}
interface ISingletonGetCreatedTime : IGetCreatedTime
{
}
interface IScopedGetCreatedTime : IGetCreatedTime
{
}
interface ITransientGetCreatedTime : IGetCreatedTime
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment