package Common::DB::Item::SaleFeedServiceURL;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use Common::DB::ItemCollection;
use Common::DB::Item;
use base 'Common::DB::Item';

use constant kTable => 'sale_feed_service_url';
use constant kDB    => Common::DB::Item::kCommonDB;

sub GetAllSortedByCountryCode {
    my $class = shift;

    return $class->SUPER::GetAll( 'SELECT * FROM ' . kTable . ' ORDER BY service_id, country_code' );
}

1;
