Merge branch 'master' of https://git.bukova.info/repos/git/isspst
Conflicts: src/main/java/info/bukova/isspst/services/approved/OrderServiceImpl.javamultitenant
commit
5421486189
@ -1,13 +1,16 @@
|
||||
package info.bukova.isspst.services.approved;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
import info.bukova.isspst.data.JoinedItem;
|
||||
import info.bukova.isspst.data.Order;
|
||||
import info.bukova.isspst.data.Workgroup;
|
||||
import info.bukova.isspst.services.Service;
|
||||
|
||||
public interface OrderService extends Service<Order> {
|
||||
|
||||
public Order createOrder(List<JoinedItem> items);
|
||||
public BigDecimal totalOrderedForWorkgroup(Workgroup workgroup);
|
||||
|
||||
}
|
||||
|
@ -1,17 +1,17 @@
|
||||
package info.bukova.isspst.storage;
|
||||
|
||||
import info.bukova.isspst.services.IsspstException;
|
||||
|
||||
public class StorageException extends IsspstException {
|
||||
|
||||
private static final long serialVersionUID = -1303880908451845756L;
|
||||
|
||||
public StorageException(String reason) {
|
||||
super(reason);
|
||||
}
|
||||
|
||||
public StorageException(String reason, Throwable cause) {
|
||||
super(reason, cause);
|
||||
}
|
||||
|
||||
}
|
||||
package info.bukova.isspst.storage;
|
||||
|
||||
import info.bukova.isspst.services.IsspstException;
|
||||
|
||||
public class StorageException extends IsspstException {
|
||||
|
||||
private static final long serialVersionUID = -1303880908451845756L;
|
||||
|
||||
public StorageException(String reason) {
|
||||
super(reason);
|
||||
}
|
||||
|
||||
public StorageException(String reason, Throwable cause) {
|
||||
super(reason, cause);
|
||||
}
|
||||
|
||||
}
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
Loading…
Reference in New Issue