Исполнитель: ещё раз пофиксил ошибки
This commit is contained in:
parent
eab127ec3f
commit
90a164c508
@ -10,6 +10,6 @@ namespace VeterinaryContracts.BindingModels
|
||||
public int Count { get; set; }
|
||||
public double Sum { get; set; }
|
||||
public DateTime DatePurchase { get; set; }
|
||||
public Dictionary<int, (IPetModel, int)> PurchasePet { get; set; } = new();
|
||||
public Dictionary<int, IPetModel> PurchasePet { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -8,6 +8,6 @@ namespace VeterinaryContracts.BindingModels
|
||||
public int OwnerId { get; set; }
|
||||
public int? DoctorId { get; set; } = null;
|
||||
public DateTime DateVisit { get; set; }
|
||||
public Dictionary<int, (IPetModel, int)> VisitPet { get; set; } = new();
|
||||
public Dictionary<int, IPetModel> VisitPet { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user