diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-12 16:26:26 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-12 16:26:26 +0300 |
| commit | 3ba9108bc24f0419a552f535fbc7495071884e97 (patch) | |
| tree | 56eb2a857646305472693bad7a3ac1ee5773da3c /ExamTemplate/Web | |
| parent | e31d09d1ef195bbcc1f8455d58f401125a3050a9 (diff) | |
| download | it-kariera-exam-template-3ba9108bc24f0419a552f535fbc7495071884e97.tar it-kariera-exam-template-3ba9108bc24f0419a552f535fbc7495071884e97.tar.gz it-kariera-exam-template-3ba9108bc24f0419a552f535fbc7495071884e97.zip | |
Implemented Cloudinary interface
Diffstat (limited to 'ExamTemplate/Web')
| -rw-r--r-- | ExamTemplate/Web/Startup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ExamTemplate/Web/Startup.cs b/ExamTemplate/Web/Startup.cs index d627c52..ec479a7 100644 --- a/ExamTemplate/Web/Startup.cs +++ b/ExamTemplate/Web/Startup.cs @@ -34,7 +34,7 @@ namespace ExamTemplate.Web * Dependency Injection configuration
*/
- services.AddTransient<CloudinaryService>(options =>
+ services.AddTransient<ICloudinaryService, CloudinaryService>(options =>
new CloudinaryService(
cloudName: this.Configuration.GetSection("Cloud").GetSection("cloudName").Value,
apiKey: this.Configuration.GetSection("Cloud").GetSection("apiKey").Value,
|
