September 2005
Intermediate to advanced
240 pages
6h 28m
English
These are the Data Transfer Objects (DTOs) used in creating reports.
public class CDDiscInventoryDTO
{
public CDDiscInventoryItem[] theCDDiscInventoryItems;
}
public class CDDiscInventoryItem
{
public PhysicalID theCDDiscPhysicalID;
public boolean isCDDiscRented;
public CustomerID theCustomerID;
}
public class OverdueRentalDTO
{
public Timestamp theRentalStartTime;
public Timestamp theRentalDueTime;
public Timestamp theRentalEndTime;
public Dollar theOverdueFee;
public CustomerID theCustomerID;
public Name theCustomerName;
public Name theCDReleaseTitle;
public PhysicalID theCDDiscPhysicalID;
}
public class RentalContractDTO
{
public Timestamp theRentalStartTime;
public Timestamp theRentalDueTime;
public Name theCustomerName;
public Name theCDReleaseTitle;
public PhysicalID theCDDiscPhysicalID;
public Dollar theRentalFee;
}