﻿/*************************
Models
*************************/
var Calculator = Model.extend({
    Action: null,
    DownPayment: null,
    MaximumSellingPrice: null,
    MonthlyPayment: null,
    Months: null,
    SellingPrice: null,
    State: null,
    ZipCode: null,
    
    resources: function() {
        return {
            get: BASE_DIR + 'calculator/default.aspx/' + this.Action + '?DownPayment=' + this.DownPayment + '&MaximumSellingPrice=' + this.MaximumSellingPrice + '&&MonthlyPayment=' + this.MonthlyPayment + '&Months=' + this.Months + '&SellingPrice=' + this.SellingPrice + '&State=' + this.State + '&ZipCode=' + this.ZipCode + '&rpc=1'
        };
    }
});

