Beispiel #1
0
 public DataTable LocationSearchByKey()
 {
     try
     {
         location = new DAL.Location();
         DataTable dataResult = new DataTable();
         PopulateDataLayer();
         dataResult = location.LocationSearchByKey().Tables[0];
         return(dataResult);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }