1234567891011121314151617181920212223242526272829 |
- (function () {
- BemsWebApplication.CmPartnerTypeViewModel = function (data) {
- this.PartnerTypeId = ko.observable();
- this.Name = ko.observable();
- this.IsUse = ko.observable();
- if (data)
- this.fromJS(data);
- };
- $.extend(BemsWebApplication.CmPartnerTypeViewModel.prototype, {
- toJS: function () {
- return {
- PartnerTypeId: this.PartnerTypeId(),
- Name: this.Name(),
- IsUse: this.IsUse(),
- };
- },
- fromJS: function (data) {
- if (data) {
- this.PartnerTypeId(data.PartnerTypeId);
- this.Name(data.Name);
- this.IsUse(data.IsUse);
- }
- }
- });
- })();
|