// fetch by Primary key into current object
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/fdcc33b4-08f1-43c3-ae28-95fbf029c3bd
        // parameters:
        //  CrudeAirportIdentifierTypeRefData: primary key of table CrudeAirportIdentifierTypeRefData
        public CrudeAirportIdentifierTypeRefModel FetchByAirportIdentifierTypeRcd(string airportIdentifierTypeRcd)
        {
            var dataAccessLayer = new CrudeAirportIdentifierTypeRefData();
            var model           = new CrudeAirportIdentifierTypeRefModel();

            dataAccessLayer.FetchByAirportIdentifierTypeRcd(airportIdentifierTypeRcd);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
        // fetch by Primary key into current object
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  airportIdentifierTypeRcd: primary key of table airport_identifier_type_ref
        public CrudeAirportIdentifierTypeRefContract FetchByAirportIdentifierTypeRcd(string airportIdentifierTypeRcd)
        {
            var dataAccessLayer = new CrudeAirportIdentifierTypeRefData();
            var contract        = new CrudeAirportIdentifierTypeRefContract();

            dataAccessLayer.FetchByAirportIdentifierTypeRcd(airportIdentifierTypeRcd);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }