2024-05-30 00:08:44 +04:00
|
|
|
|
using PolyclinicBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicWebAppImplementer.Models
|
|
|
|
|
{
|
|
|
|
|
public class DiagnosesByPeriodFormModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Начало периода")]
|
|
|
|
|
public DateTime? DateStart { get; set; }
|
|
|
|
|
[DisplayName("Конец периода")]
|
|
|
|
|
public DateTime? DateEnd { get; set; }
|
|
|
|
|
public ReportType ReportType { get; set; }
|
|
|
|
|
public ReportDiagnosesByPeriodViewModel? Report { get; set; }
|
2024-05-30 04:06:00 +04:00
|
|
|
|
public string? Error { get; set; }
|
|
|
|
|
public string? Message { get; set; }
|
2024-05-30 00:08:44 +04:00
|
|
|
|
}
|
|
|
|
|
}
|