AjaxSTYSeries.MyComponent.prototype =
{
    SetMyprop: function(myNumber)
    {
        this._myProp = myNumber;
    },
    GetMyprop: function()
    {
        return this._myProp;
    },
    MyMethod: function()
    {
        alert('To jest metoda komponentu.');
    }
}
