Skip to content
Snippets Groups Projects
Manager.pm 266 B
Newer Older
package IdPAccountManager::TestAccount::Manager;

use strict;
use warnings;

use base qw(Rose::DB::Object::Manager);

use IdPAccountManager::TestAccount;

sub object_class { 'IdPAccountManager::TestAccount' }

__PACKAGE__->make_manager_methods('testaccounts');

1;