14 lines
291 B
C#
14 lines
291 B
C#
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.CashRegister.Pages;
|
||
|
|
|
||
|
|
public class ZReportModel : PageModel
|
||
|
|
{
|
||
|
|
public string ReportId { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public void OnGet(string id)
|
||
|
|
{
|
||
|
|
ReportId = id ?? string.Empty;
|
||
|
|
}
|
||
|
|
}
|