Commit 63f137c6 authored by Savorboard's avatar Savorboard

add notes to readme.

parent 8505a878
...@@ -187,10 +187,10 @@ Then inject your `ISubscriberService` class in Startup.cs ...@@ -187,10 +187,10 @@ Then inject your `ISubscriberService` class in Startup.cs
```c# ```c#
public void ConfigureServices(IServiceCollection services) public void ConfigureServices(IServiceCollection services)
{ {
//Note: The injection of services needs before of `services.AddCap(x=>{});` //Note: The injection of services needs before of `services.AddCap()`
services.AddTransient<ISubscriberService,SubscriberService>(); services.AddTransient<ISubscriberService,SubscriberService>();
services.AddCap(x=>{}); services.AddCap(x=>{});
} }
``` ```
......
...@@ -187,10 +187,10 @@ namespace xxx.Service ...@@ -187,10 +187,10 @@ namespace xxx.Service
```c# ```c#
public void ConfigureServices(IServiceCollection services) public void ConfigureServices(IServiceCollection services)
{ {
//注意: 注入的服务需要在 `services.AddCap(x=>{});` 之前 //注意: 注入的服务需要在 `services.AddCap()` 之前
services.AddTransient<ISubscriberService,SubscriberService>(); services.AddTransient<ISubscriberService,SubscriberService>();
services.AddCap(x=>{}); services.AddCap(x=>{});
} }
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment