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

@ -15,9 +15,9 @@ namespace Oqtane.Infrastructure
private readonly IHostApplicationLifetime _hostApplicationLifetime;
private readonly IWebHostEnvironment _environment;
public InstallationManager(IHostApplicationLifetime HostApplicationLifetime, IWebHostEnvironment environment)
public InstallationManager(IHostApplicationLifetime hostApplicationLifetime, IWebHostEnvironment environment)
{
_hostApplicationLifetime = HostApplicationLifetime;
_hostApplicationLifetime = hostApplicationLifetime;
_environment = environment;
}

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

View File

@ -18,13 +18,13 @@ namespace Oqtane.Infrastructure
private readonly IUserPermissions _userPermissions;
private readonly IHttpContextAccessor _accessor;
public LogManager(ILogRepository Logs, ITenantResolver TenantResolver, IConfigurationRoot Config, IUserPermissions UserPermissions, IHttpContextAccessor Accessor)
public LogManager(ILogRepository logs, ITenantResolver tenantResolver, IConfigurationRoot config, IUserPermissions userPermissions, IHttpContextAccessor accessor)
{
_logs = Logs;
_tenantResolver = TenantResolver;
_config = Config;
_userPermissions = UserPermissions;
_accessor = Accessor;
_logs = logs;
_tenantResolver = tenantResolver;
_config = config;
_userPermissions = userPermissions;
_accessor = accessor;
}
public void Log(LogLevel Level, object Class, LogFunction Function, string Message, params object[] Args)