unit tests and pkg version commits

This commit is contained in:
Paul Schneider 2021-08-28 18:41:22 +01:00
commit f6fa7a0ec9
17 changed files with 553 additions and 89 deletions

View file

@ -10,17 +10,13 @@ namespace isnd.Controllers
{
public class HomeController : Controller
{
private readonly ILogger _logger;
private readonly ApplicationDbContext _dbContext;
private readonly IHostingEnvironment _env;
private readonly IUnleash _unleashĈlient;
public HomeController(
ApplicationDbContext dbContext,
IUnleash unleashĈlient,
ILogger<HomeController> logger)
IUnleash unleashĈlient)
{
_logger = logger;
_dbContext = dbContext;
_unleashĈlient = unleashĈlient;
}