correction PartTypeImpl

This commit is contained in:
trochas
2024-10-18 17:32:47 +02:00
parent 1b80e60980
commit 8ea96996d4
2 changed files with 22 additions and 21 deletions

View File

@@ -1,10 +1,10 @@
package src.fr.impl;
public class PartType implements src.fr.api.PartType {
public class PartTypeImpl implements src.fr.api.PartType {
private String name;
private Category category;
public PartType(String name, Category category ) {
public PartTypeImpl(String name, Category category ) {
this.name = name;
this.category = category;
}