Project

General

Profile

Feature #219 » 2-tsModel.ts

Junaid M, 04/22/2024 11:55 AM

 
???File Path
==========
***...\ClientApp\srcpp\modelsase\gdslcc.model.ts


// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@ GdsCustomFormat @@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
export class MdlGdsCustomFormat extends MdlUserAction {

binGdsCustomFormatId: number = 0;
sinCategory: number = 0;
sinSubCategory: number = 0;
strSysAttributeName: string = "";
binCorporateCustomDataId: number | null = null;
strCorporateCustomData: string = "";
binServiceCustomDataId: number | null = null;
strServiceCustomData: string = "";
strAmadeusFormat: string = "";
strGalileoFormat: string = "";
strSabreFormat: string = "";
strWorldspanFormat: string = "";
strFarelogixFormat: string = "";
strAbacusFormat: string = "";
strTravelportFormat: string = "";
}

export class MdlReqGdsCustomFormat extends MdlRequest {

mdlGdsCustomFormat:MdlGdsCustomFormat = new MdlGdsCustomFormat();
}

export class MdlResGdsCustomFormat extends MdlResponse {

mdlGdsCustomFormat:MdlGdsCustomFormat = new MdlGdsCustomFormat();
}

export class MdlResGdsCustomFormatList extends MdlResponse {

lstMdlGdsCustomFormat: MdlGdsCustomFormat[] = [];
}

export class MdlResGdsCustomFormatInit extends MdlResponse {
lstMdlCorporateCustomDataBaseIntId: MdlBaseIntId[] = [];
lstMdlServiceCustomDataBaseIntId: MdlBaseIntId[] = [];


lstMdlGdsCustomFormat: MdlGdsCustomFormat[] = [];
}

(2-2/7)