mirror of
https://github.com/adusak/Dependify.git
synced 2026-01-16 14:06:53 +01:00
Update README.md
This commit is contained in:
52
README.md
52
README.md
@@ -17,54 +17,4 @@ Why the name? Because I wanted to contribute to the following [list](http://www.
|
||||
|
||||
# Usage
|
||||
|
||||
Let's have following interface and class
|
||||
```c#
|
||||
public interface ICar {
|
||||
|
||||
}
|
||||
|
||||
public class Audi : ICar {
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
## Class Attributes
|
||||
|
||||
### Single interface
|
||||
|
||||
If you want to add `Audi` as an implementation of `ICar` into `IServiceCollection` you just need to add `RegisterTransient`, `RegisterScoped` or `RegisterSingleton` attribute like
|
||||
|
||||
```c#
|
||||
[RegisterTransient]
|
||||
public class Audi : ICar {
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
and call
|
||||
```c#
|
||||
public void ConfigureServices(IServiceCollection services) {
|
||||
services.AutoRegister();
|
||||
}
|
||||
```
|
||||
|
||||
### Multiple interfaces
|
||||
|
||||
If your class implements multiple interfaces, you can specify which one should be registered
|
||||
|
||||
```c#
|
||||
[RegisterTransient(typeof(IFuelConsumer)]
|
||||
public class Audi : ICar, IFuelConsumer {
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
## Factory method attributes
|
||||
|
||||
If you want to add `Audi` as an implementation of `ICar` using static factory method, you can do following
|
||||
```c#
|
||||
[RegisterTransientFactory(typeof(ICar))]
|
||||
public static Audi CreateAudi(IServiceProvider provider) {
|
||||
return new Audi();
|
||||
}
|
||||
```
|
||||
See [Wiki](https://github.com/davidkaya/Dependify/wiki/Usage) for usage instructions.
|
||||
|
||||
Reference in New Issue
Block a user