public void setClearParseMap()
 {
     MapDocid.Clear();
     MapRetailer.Clear();
     MapGoods.Clear();
     MapTourist.Clear();
     MapAdsInfo.Clear();
 }
 public bool getParseTourist(string tourist)
 {
     try
     {
         string[] arrTourist = tourist.Split('|');
         MapTourist.Add(Tourist.PassportType, getPassPortEtc(arrTourist[0]));
         MapTourist.Add(Tourist.PassportNo, arrTourist[1]);
         MapTourist.Add(Tourist.Name, arrTourist[2].ToUpper());
         MapTourist.Add(Tourist.National, arrTourist[3]);
         MapTourist.Add(Tourist.Birth, arrTourist[4]);
         MapTourist.Add(Tourist.Residence, arrTourist[5]);
         MapTourist.Add(Tourist.LandingPlace, arrTourist[6]);
         MapTourist.Add(Tourist.LandingDate, arrTourist[7]);
     }
     catch
     {
         return(false);
     }
     return(true);
 }
Exemple #3
0
 public bool getParseTourist(string tourist)
 {
     try
     {
         string[] arrTourist = tourist.Split('|');
         //MapTourist.Add(Tourist.PassportType, getPassPortEtc(arrTourist[0]));      // ver.1.1.1.4 여권종류 Text로 수정
         MapTourist.Add(Tourist.PassportType, arrTourist[0]);
         MapTourist.Add(Tourist.PassportNo, arrTourist[1]);
         MapTourist.Add(Tourist.Name, arrTourist[2].ToUpper());
         MapTourist.Add(Tourist.National, arrTourist[3]);
         // Modified by AsCarion [2015.04.14]
         // 날짜 양식 수정
         MapTourist.Add(Tourist.Birth, getDateString(arrTourist[4]));
         MapTourist.Add(Tourist.Residence, arrTourist[5]);
         //MapTourist.Add(Tourist.LandingPlace, arrTourist[6]);
         MapTourist.Add(Tourist.LandingDate, getDateString(arrTourist[6]));
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
         return(false);
     }
     return(true);
 }