提供給台大案英特拉線上繳費填寫發票資訊用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
333B

  1. using Microsoft.AspNetCore.Mvc;
  2. using Microsoft.AspNetCore.Mvc.RazorPages;
  3. namespace Altob.NtuInvoiceGateway.Pages;
  4. public class IndexModel : PageModel
  5. {
  6. private readonly ILogger<IndexModel> _logger;
  7. public IndexModel(ILogger<IndexModel> logger)
  8. {
  9. _logger = logger;
  10. }
  11. public void OnGet()
  12. {
  13. }
  14. }