示例#1
0
            public void updatePortStationCSTExistStatus(string port_id, string cst_id)
            {
                APORTSTATION port_station = CacheManager.getPortStation(port_id);

                if (port_station != null)
                {
                    port_station.CST_ID = cst_id;
                }
            }
            public APORTSTATION getPortStation(string port_id)
            {
                APORTSTATION portTemp = CacheManager.getPortStation(port_id);

                return(portTemp);
            }