#---------------------------------------------------------------
# ____                   _ _         ____  _                    
#|  _ \ ___  _   _  __ _| | |_ _   _/ ___|| |__   __ _ _ __ ___ 
#| |_) / _ \| | | |/ _` | | __| | | \___ \| '_ \ / _` | '__/ _ \
#|  _ < (_) | |_| | (_| | | |_| |_| |___) | | | | (_| | | |  __/
#|_| \_\___/ \__, |\__,_|_|\__|\__, |____/|_| |_|\__,_|_|  \___|
#            |___/             |___/                            
#
# Copyright (C) 2009 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#---------------------------------------------------------------
package RPS::Statement::Mechanical::US::StatementLicenseTransactionList;

use strict;
use warnings;
use Carp;

use Data::Dumper;

use lib '/app/tools/common/lib';
use Common::Assert;

use lib '/app/tools/rps/lib';

use RPS::Statement::Mechanical::US::StatementLicenseTransaction;
use RPS::DB::Item::MechanicalStatementLicenseTransaction;

use RPS::Statement::Mechanical::StatementLicenseTransactionList;
use base 'RPS::Statement::Mechanical::StatementLicenseTransactionList';

sub _getStatementLicenseTransactionCollection
{
    my ($self, $statementLicenseID) = @_;

    return RPS::DB::Item::MechanicalStatementLicenseTransaction->GetByMechanicalStatementLicenseID($statementLicenseID);
}


sub _getStatementLicenseTransaction
{
    my ($self, $dbItem) = @_;

    return RPS::Statement::Mechanical::US::StatementLicenseTransaction->new(_dbItem => $dbItem);
}

1;
