Compare commits

..

No commits in common. "a250011ae9d40d651df7a4d6d4de59806847c901" and "cad62f379869c2bfe20a913807228079df998d7f" have entirely different histories.

View File

@ -515,8 +515,8 @@ namespace VeterinaryShowOwnerApp.Controllers
table += "<tr>";
table += $"<td>{visit.DateVisit}</td>";
table += $"<td></td>";
table += $"<td>{visit.VisitName}</td>";
table += $"<td></td>";
table += $"<td></td>";
table += $"<td>{visit.VisitName}</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 += $"<td>{drug.DrugName}</td>";
table += "</tr>";
table += "</tr>";
}
table += "</tbody>";
}