(function () { BemsWebApplication.FmsPaymentTypeViewModel = function (data) { this.SiteId = ko.observable(); this.PaymentTypeId = ko.observable(); this.Name = ko.observable(); this.IsUse = ko.observable(); if (data) this.fromJS(data); }; $.extend(BemsWebApplication.FmsPaymentTypeViewModel.prototype, { toJS: function () { return { SiteId: this.SiteId(), PaymentTypeId: this.PaymentTypeId(), Name: this.Name(), IsUse: this.IsUse(), }; }, fromJS: function (data) { if (data) { this.SiteId(data.SiteId); this.PaymentTypeId(data.PaymentTypeId); this.Name(data.Name); this.IsUse(data.IsUse); } } }); })();