19 lines
509 B
C#
19 lines
509 B
C#
using CompanyManagment.App.Contracts.CameraBugReport;
|
|
|
|
namespace ServiceHost.Areas.AdminNew.Pages.BugReport;
|
|
|
|
public class DetailsModel : BugReportPageModel
|
|
{
|
|
public DetailsModel(ICameraBugReportApplication bugReportApplication) : base(bugReportApplication)
|
|
{
|
|
}
|
|
|
|
public void OnGet(Guid id)
|
|
{
|
|
BugReportDetails = GetBugReportDetails(id);
|
|
if (BugReportDetails == null)
|
|
{
|
|
TempData["ErrorMessage"] = "گزارش خرابی یافت نشد";
|
|
}
|
|
}
|
|
} |