Comment empty constructors

This commit is contained in:
CodeSteak 2020-05-10 17:03:40 +02:00
parent e406918ca2
commit 713c8ebe86
2 changed files with 2 additions and 2 deletions

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() {
}
;
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() {
}