исправление ReceptionMedicine
This commit is contained in:
parent
93c765b48b
commit
832c522806
@ -2,14 +2,14 @@
|
||||
|
||||
public class ReceptionMedicine
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int ReceptionId { get; set; }
|
||||
public int MedicineId { get; private set; }
|
||||
public int Count { get; private set; }
|
||||
public static ReceptionMedicine CreateElement(int id, int medicineId, int count)
|
||||
public static ReceptionMedicine CreateElement(int receptionId, int medicineId, int count)
|
||||
{
|
||||
return new ReceptionMedicine
|
||||
{
|
||||
Id = id,
|
||||
ReceptionId = receptionId,
|
||||
MedicineId = medicineId,
|
||||
Count = count
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user