Skip to content

Commit 240eeba

Browse files
committed
Readme update
1 parent 2bbb5ce commit 240eeba

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,23 @@
1212

1313
## Quick Start
1414

15-
Add `GeneratePostmanData` after Simplify registration and container setup
15+
1. Add `RegisterSimplifyWebPostman` to IOC container registrations.
16+
17+
```csharp
18+
public static class IocRegistrations
19+
{
20+
public static IDIContainerProvider RegisterAll(this IDIContainerProvider containerProvider)
21+
{
22+
containerProvider.RegisterSimplifyWeb()
23+
.RegisterJsonModelBinder()
24+
.RegisterSimplifyWebPostman();
25+
26+
return containerProvider;
27+
}
28+
}
29+
```
30+
31+
2. Add `GeneratePostmanData` after Simplify registration and container setup
1632

1733
```csharp
1834
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)

0 commit comments

Comments
 (0)