Browse Source

Update Blob-Storing-Custom-Provider.md

pull/4305/head
Halil İbrahim Kalkan 6 years ago
parent
commit
df7e703984
  1. 2
      docs/en/Blob-Storing-Custom-Provider.md

2
docs/en/Blob-Storing-Custom-Provider.md

@ -44,6 +44,8 @@ namespace AbpDemo
* `MyCustomBlobProvider` inherits from the `BlobProviderBase` and overrides the `abstract` methods. The actual implementation is up to you.
* Implementing `ITransientDependency` registers this class to the [Dependency Injection](Dependency-Injection.md) system as a transient service.
> **Notice: Naming conventions are important**. If your class name doesn't end with `BlobProvider`, you must manually register/expose your service for the `IBlobProvider`.
That's all. Now, you can configure containers (inside the `ConfigureServices` method of your [module](Module-Development-Basics.md)) to use the `MyCustomBlobProvider` class:
````csharp

Loading…
Cancel
Save