2024-12-14 09:53:55 +00:00

21 lines
507 B
C#

using EnotaryoPH.Data;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace EnotaryoPH.Web.Pages
{
public class IndexModel : PageModel
{
private readonly ILogger<IndexModel> _logger;
private readonly NotaryoDBContext _notaryoDBContext;
public IndexModel(ILogger<IndexModel> logger, NotaryoDBContext notaryoDBContext)
{
_logger = logger;
_notaryoDBContext = notaryoDBContext;
}
public void OnGet()
{
}
}
}