#------------------------------------------------------------
# Copyright (C) 2009 RoyaltyShare, Inc.   All Rights Reserved
#------------------------------------------------------------
package Support::SaleImporter::Service::WithImporters::BookPub;

use lib '/app/tools/support/lib';
use Support::SaleImporter::SaleImporterList::BookPub;

use base 'Support::SaleImporter::Service::BookPub';

sub _initProperties {
    my $self = shift;

    $self->SUPER::_initProperties(@_);

    $self->{SaleImporterList} = Support::SaleImporter::SaleImporterList::BookPub->new( serviceID => $self->ServiceID() );

    return $self;
}

1;
