##
Quota->belongs_to(account => 'Account');
Account->belongs_to(project => 'Project');
####
my $project_from_quota = $quota->account()->project();
####
package Quota;
sub project { return shift->account()->project() }
#...
my $project_from_quota = $quota->project();