feature/basic_functions #7

Merged
Seil0 merged 30 commits from feature/basic_functions into master 2020-05-10 17:48:31 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 713c8ebe86 - Show all commits

View File

@ -28,11 +28,10 @@ public class BookingReason {
@ManyToOne(optional = true)
public SupplierOrder supplierOrder;
// Default Constructor is needed for construction by ORM
public BookingReason() {
}
Review

Das kann auch weg.

Das kann auch weg.
Review

Nope, ORM braucht nen leeren Konstruktor. Ich mach ein Kommentar drüber. 713c8ebe86

Nope, ORM braucht nen leeren Konstruktor. Ich mach ein Kommentar drüber. 713c8ebe86faffcde94f076956bdc5d02fe3ddaa
Review

Ich meinte auch das Semikolon.

Ich meinte auch das Semikolon.
;
public BookingReason(CustomerOrder order) {
this.customerOrder = order;
}

View File

@ -24,6 +24,7 @@ public class WarehouseBookingReason {
public boolean isManuel;
// Default Constructor is needed for construction by ORM
public WarehouseBookingReason() {
}