Fix casing for constructor params

This commit is contained in:
Hisham Bin Ateya
2020-03-05 20:03:54 +03:00
parent 303bdf3be2
commit 425b4e1c67
60 changed files with 217 additions and 217 deletions

View File

@ -17,9 +17,9 @@ namespace Oqtane.Infrastructure
private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
private readonly IServiceScopeFactory _serviceScopeFactory;
public HostedServiceBase(IServiceScopeFactory ServiceScopeFactory)
public HostedServiceBase(IServiceScopeFactory serviceScopeFactory)
{
_serviceScopeFactory = ServiceScopeFactory;
_serviceScopeFactory = serviceScopeFactory;
}
// abstract method must be overridden