Compare commits

...

2 Commits

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>";
}