public void setId(Long id) {
this.id = id;
}
public List getQuotations() {
QuotationStatus status = stStatus != null ? QuotationStatus.valueOf(stStatus) : null;
if (contact != null || description != null || id != null || company != null) {
quotations = sort(quotationManager.findQuotations(id, description, date, company, contact, status));
}
if (quotations != null) {
return sort(quotations);