diff --git a/src/app/models/broker.model.ts b/src/app/models/broker.model.ts index 94d62f7..4136fd5 100644 --- a/src/app/models/broker.model.ts +++ b/src/app/models/broker.model.ts @@ -40,16 +40,16 @@ export class BrokerModel extends PeopleModel { return ret; } - public toPeopleModel(): PeopleModel{ - const ret = new PeopleModel( {} ); - ret.Id = this.Id; - ret.First = this.First; - ret.Last = this.Last; - ret.Middle = this.Middle; - ret.Title = this.Title; - ret.Display = this.Display; - ret.Nick = this.Nick; - ret.Enabled = this.Enabled; - return ret; - } + // public toPeopleModel(): PeopleModel{ + // const ret = new PeopleModel( {} ); + // ret.Id = this.Id; + // ret.First = this.First; + // ret.Last = this.Last; + // ret.Middle = this.Middle; + // ret.Title = this.Title; + // ret.Display = this.Display; + // ret.Nick = this.Nick; + // ret.Enabled = this.Enabled; + // return ret; + // } }