
function CountryZone() { }
CountryZone._path = '/dwr';

CountryZone.getAllCountries = function(callback) {
    DWREngine._execute(CountryZone._path, 'CountryZone', 'getAllCountries', callback);
}

CountryZone.getZonesByCountryId = function(p0, callback) {
    DWREngine._execute(CountryZone._path, 'CountryZone', 'getZonesByCountryId', p0, callback);
}

