Ejemplo n.º 1
0
 /// <summary>
 /// This method returns a string value of the seat number.
 /// </summary>
 /// <param name="sFlightID"></param>
 /// <param name="sCurrentPassID"></param>
 /// <returns></returns>
 public string CreatSeatNumber(string sFlightID, string sCurrentPassID)
 {
     try
     {
         return(clsData.RetrieveSeatNumber(sFlightID, sCurrentPassID));
     }
     catch (Exception ex)
     {
         throw new Exception(MethodInfo.GetCurrentMethod().DeclaringType.Name + "." + MethodInfo.GetCurrentMethod().Name + " -> " + ex.Message);
     }
 }