package BookPub::RDAS::Request::BestSellerList::NewYorkTimes;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::RDAS::Request::BestSellerList';

use BookPub::RDAS::Parser::BestSellerList::NewYorkTimes;
use BookPub::RDAS::Response::BestSellerList::NewYorkTimes;

sub _getParserObject {
    my $self = shift;
    return new BookPub::RDAS::Parser::BestSellerList::NewYorkTimes(@_);
}

sub _getResponseObject {
    my $self = shift;
    return new BookPub::RDAS::Response::BestSellerList::NewYorkTimes( parser => $self->parser, @_ );
}

1;
