#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Report::Command::LabelsWithMultipleContracts;
use strict;
use warnings;


use lib '/app/tools/rps/lib';
use RPS::Report::LabelsWithMultipleContracts;
use RPS::Report::Command::BaseReport;

use base 'RPS::Report::Command::BaseReport';

sub cmd  { return 'labels_multiple_contracts'; }
sub area { return 'report'; }

sub _getReport
{
    my ($self, $page) = @_;
    return RPS::Report::LabelsWithMultipleContracts->new(page => $page);
}


sub _getFilenamePrefix
{
    my ($self) = @_;
    return 'Labels_Multiple_Contracts';
}


1;
