예제 #1
0
파일: Ingres.cs 프로젝트: JordanChin/Ingres
 //Constructors
 public Airport(String Country, String Region, String ICAOcode)
 {
     country = Country;
     region = Region;
     icaocode = ICAOcode;
     countryDataSet = null;
     regionDataSet = null;
     icaocodeDataSet = null;
 }
예제 #2
0
파일: Ingres.cs 프로젝트: JordanChin/Ingres
 public Airport(String Country)
 {
     country = Country;
     region = null;
     icaocode = null;
     countryDataSet = null;
     regionDataSet = null;
     icaocodeDataSet = null;
 }