Interface IDocumentStorageServiceFactory
The factory that manages creation of IDocumentStorageServices. IDocumentStorageService.
Namespace: LemonEdge.API.Core.Storage
Assembly: LemonEdge.API.dll
Syntax
public interface IDocumentStorageServiceFactory
Methods
Create(string)
Creates a service, using the key from config, or the manual override. Can return null in the event of no / incorrect config, in which case the document blobs are stored in the database.
Declaration
IDocumentStorageService Create(string overrideKey = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | overrideKey | Leave blank to use config. |
Returns
| Type | Description |
|---|---|
| IDocumentStorageService |