#------------------------------------------------------------
# Copyright (C) 2009 RoyaltyShare, Inc.   All Rights Reserved
#------------------------------------------------------------
package Support::SaleImporter::ServiceList::RPS;

use strict;
use warnings;
use Carp;

use lib '/app/tools/data_classes/lib';
use Client::Service;

use lib '/app/tools/support/lib';
use Support::SaleImporter::Service::WithImporters::RPS;

use base 'Support::SaleImporter::ServiceList';

sub _getAllServiceIDs { Client::Service::GetAllServiceIDs(); }

sub _getServiceObject {
    my $self      = shift;
    my $serviceID = shift;

    new Support::SaleImporter::Service::WithImporters::RPS( serviceID => $serviceID );
}

1;
