2024-05-14 23:49:46 +04:00
|
|
|
|
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; }
|
2024-05-15 02:21:25 +04:00
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
|
public int? PatientId { get; set; }
|
|
|
|
|
public int? DoctorId { get; set; }
|
|
|
|
|
public int? DiagnoseId { get; set; }
|
2024-05-14 23:49:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|