CourseWork_Borschevskaya_A..../Hospital/HospitalContracts/SearchModels/PrescriptionSearchModel.cs

11 lines
279 B
C#
Raw Normal View History

2023-04-05 11:46:14 +04:00
namespace HospitalContracts.SearchModels
{
public class PrescriptionSearchModel
{
public int? Id { get; set; }
public int? ApothecaryId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2023-04-05 11:46:14 +04:00
}
}