2021-10-18 21:48:02 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
2021-10-24 20:15:09 +01:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2021-10-18 21:48:02 +01:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace Selector.Web.Pages
|
|
|
|
|
{
|
2021-10-24 20:15:09 +01:00
|
|
|
|
[AllowAnonymous]
|
2021-10-18 21:48:02 +01:00
|
|
|
|
public class IndexModel : PageModel
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger<IndexModel> _logger;
|
|
|
|
|
|
|
|
|
|
public IndexModel(ILogger<IndexModel> logger)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OnGet()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|