use strict;


UpdateSoundExchangeName->start();


package UpdateSoundExchangeName;

use lib '/app/tools/common/lib';
use lib '/app/tools/rps/lib';

use Common::Log;
use Common::Util;
use Common::Client;
use Common::RSApp;

use base 'Common::Script';


sub _process {
    my $self = shift;
    
    my $dbo = Common::RSApp::GetClientDB();

    $dbo->DoCmd('UPDATE service SET service_name ="SoundExchange" WHERE service_id = 385');
        
}

sub _getProductionClientIDs {
	return Common::RSDB::GetAllRPSClientIDs();
}

sub _getLocalClientIDs {
	return 202; # RS Test
}

1;
