Updated MenuItem and User, and completed AuthService, MenuService, OrderService and ConsoleMenu.

This commit is contained in:
2026-06-22 23:30:56 +03:30
parent 09f468d9dd
commit e6e6967017
6 changed files with 318 additions and 16 deletions
+20
View File
@@ -19,4 +19,24 @@ public class MenuItem {
this.price = price;
this.category = category;
}
public String getDescription() {
return this.description;
}
public int getId() {
return this.id;
}
public String getName() {
return this.name;
}
public double getPrice() {
return this.price;
}
public String getCategory() {
return this.category;
}
}