#import <Foundation/Foundation.h>

@interface CTLease : NSObject {
}

+ (CTLease *)periodicLease:(float)weeklyPrice;
+ (CTLease *)fixedTermLeaseWithPrice:(float)totalRental
                            forWeeks:(int)numberOfWeeks;

@end
