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

@ -14,9 +14,9 @@ namespace Oqtane.Controllers
private readonly ITenantRepository _tenants;
private readonly ILogManager _logger;
public TenantController(ITenantRepository Tenants, ILogManager logger)
public TenantController(ITenantRepository tenants, ILogManager logger)
{
_tenants = Tenants;
_tenants = tenants;
_logger = logger;
}