-
Guillaume ROUSSE authoredGuillaume ROUSSE authored
Manager.pm 241 B
package AccountManager::Account::Manager;
use strict;
use warnings;
use base qw(Rose::DB::Object::Manager);
use AccountManager::Account;
sub object_class { 'AccountManager::Account' }
__PACKAGE__->make_manager_methods('accounts');
1;