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