17 lines
577 B
C#
17 lines
577 B
C#
namespace MedicalDatabaseContracts.SearchModels
|
|
{
|
|
public class VisitSearchModel : AbstractSearchModel
|
|
{
|
|
public DateOnly? DateFrom { get; set; }
|
|
public DateOnly? DateTo { get; set; }
|
|
public DateOnly? Date { get; set; }
|
|
public TimeOnly? TimeFrom { get; set; }
|
|
public TimeOnly? TimeTo { get; set; }
|
|
public TimeOnly? Time { get; set; }
|
|
public string? Comment { get; set; }
|
|
public int? PatientId { get; set; }
|
|
public int? DoctorId { get; set; }
|
|
public int? DiagnoseId { get; set; }
|
|
}
|
|
}
|