22 lines
434 B
TypeScript
22 lines
434 B
TypeScript
export class ConstrueHouseCommand {
|
|
|
|
private _rawHouseList: object;
|
|
|
|
private constructor() {
|
|
return this;
|
|
}
|
|
|
|
public static create(
|
|
rawHouseList: object,
|
|
) {
|
|
const construeHouseCommand = new ConstrueHouseCommand();
|
|
construeHouseCommand._rawHouseList = rawHouseList;
|
|
|
|
return construeHouseCommand;
|
|
}
|
|
|
|
public rawHouseList() {
|
|
return this._rawHouseList;
|
|
}
|
|
|
|
} |