if(typeof RateCalculator == "undefined") RateCalculator={};
RateCalculator_class = function() {};
Object.extend(RateCalculator_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetRate: function(menaIsoId, languageId) {
		return this.invoke("GetRate", {"menaIsoId":menaIsoId, "languageId":languageId}, this.GetRate.getArguments().slice(2));
	},
	GetRateForDay: function(menaIsoId, languageId, year, month, day) {
		return this.invoke("GetRateForDay", {"menaIsoId":menaIsoId, "languageId":languageId, "year":year, "month":month, "day":day}, this.GetRateForDay.getArguments().slice(5));
	},
	url: '/ajaxpro/KurzovyListok.BussinessLayer.RateCalculator,KurzovyListok.ashx'
}));
RateCalculator = new RateCalculator_class();


