MenuItemDao, DatabaseConnection and MenuItem completed.

This commit is contained in:
2026-06-22 23:07:01 +03:30
parent 922d7afd74
commit 09f468d9dd
3 changed files with 51 additions and 10 deletions
+7
View File
@@ -12,4 +12,11 @@ public class MenuItem {
private String category;
public MenuItem(int id, String name, String description, double price, String category) {
this.id = id;
this.name = name;
this.description = description;
this.price = price;
this.category = category;
}
}