Исполнитель: ещё раз пофиксил ошибки

This commit is contained in:
Yunusov_Niyaz 2024-04-25 00:17:35 +04:00
parent eab127ec3f
commit 90a164c508
2 changed files with 2 additions and 2 deletions

View File

@ -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();
}
}

View File

@ -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();
}
}