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