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

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

use lib '/app/tools/rps/lib';
use RPS::Report::UKMechRetentionSummary;
use RPS::Report::Command::BaseReport;
use RPS::DB::Item::UKMechanicalRun;

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

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

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


sub _getFilenamePrefix
{
    my ($self) = @_;
           
    return "Retention_Summary";    

}


1;
