21 lines
507 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
} |