﻿function BetsCartMapperClass() { }

BetsCartMapperClass.prototype = new MapperBaseClass();

BetsCartMapperClass.prototype.GetBetsCartItem = function (nOutcomeID, callback, error)
{
    var strURL = "/RIAServices/BetsCart/BetsCart.svc/GetBetsCartItem/" + nOutcomeID;
    this.PerformAsyncGETRequest(strURL, null, callback, error);
}
