#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::DB::Item::StatementType;
use strict;
use warnings;
use lib '/app/tools/common/lib';
use Common::DB::Item;
use base 'Common::DB::Item';

use constant kTable => 'statement_type';
use constant kDB    => Common::DB::Item::kClientDB();

sub GetAll {
    my ($class) = @_;
    my $sql = "select * from statement_type order by name";
    return $class->SUPER::GetAll($sql);

}

1;

