antoc0der 2024-05-27 00:34:37 +04:00
commit 2da1360f8a

View File

@ -515,8 +515,8 @@ namespace VeterinaryShowOwnerApp.Controllers
table += "<tr>";
table += $"<td>{visit.DateVisit}</td>";
table += $"<td></td>";
table += $"<td></td>";
table += $"<td>{visit.VisitName}</td>";
table += $"<td>{visit.VisitName}</td>";
table += $"<td></td>";
table += "</tr>";
}
foreach (var drug in medication.Drugs)
@ -524,9 +524,9 @@ namespace VeterinaryShowOwnerApp.Controllers
table += "<tr>";
table += $"<td>{drug.DateCreate}</td>";
table += $"<td></td>";
table += $"<td>{drug.DrugName}</td>";
table += $"<td></td>";
table += "</tr>";
table += $"<td>{drug.DrugName}</td>";
table += "</tr>";
}
table += "</tbody>";
}