| 1 | using Microsoft.AspNetCore.Mvc; |
| 2 | using Microsoft.AspNetCore.Mvc.RazorPages; |
| 3 | using Microsoft.Extensions.Logging; |
| 4 | using System; |
| 5 | using System.Collections.Generic; |
| 6 | using System.Linq; |
| 7 | using System.Threading.Tasks; |
| 8 | |
| 9 | namespace CsprojWebApplicationNetCore.Pages |
| 10 | { |
| 11 | public class IndexModel : PageModel |
| 12 | { |
| 13 | private readonly ILogger<IndexModel> _logger; |
| 14 | |
| 15 | public IndexModel(ILogger<IndexModel> logger) |
| 16 | { |
| 17 | _logger = logger; |
| 18 | } |
| 19 | |
| 20 | public void OnGet() |
| 21 | { |
| 22 | |
| 23 | } |
| 24 | } |
| 25 | } |