Browse Source

Add notes to readme.

master
Savorboard 6 years ago
parent
commit
8505a87887
2 changed files with 6 additions and 0 deletions
  1. +3
    -0
      README.md
  2. +3
    -0
      README.zh-cn.md

+ 3
- 0
README.md View File

@@ -187,7 +187,10 @@ Then inject your `ISubscriberService` class in Startup.cs
```c#
public void ConfigureServices(IServiceCollection services)
{
//Note: The injection of services needs before of `services.AddCap(x=>{});`
services.AddTransient<ISubscriberService,SubscriberService>();
services.AddCap(x=>{});
}
```



+ 3
- 0
README.zh-cn.md View File

@@ -187,7 +187,10 @@ namespace xxx.Service
```c#
public void ConfigureServices(IServiceCollection services)
{
//注意: 注入的服务需要在 `services.AddCap(x=>{});` 之前
services.AddTransient<ISubscriberService,SubscriberService>();
services.AddCap(x=>{});
}
```



Loading…
Cancel
Save