Subversion Repositories SmartDukaan

Rev

Rev 21543 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21543 Rev 21600
Line 20... Line 20...
20
		return totalAmount;
20
		return totalAmount;
21
	}
21
	}
22
	public void setTotalAmount(float totalAmount) {
22
	public void setTotalAmount(float totalAmount) {
23
		this.totalAmount = totalAmount;
23
		this.totalAmount = totalAmount;
24
	}
24
	}
-
 
25
	@Override
-
 
26
	public String toString() {
-
 
27
		return "BillingDetail [invoiceNumber=" + invoiceNumber + ", airwayBillNumber=" + airwayBillNumber
-
 
28
				+ ", totalAmount=" + totalAmount + "]";
-
 
29
	}
-
 
30
	
-
 
31
	
25
}
32
}