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