Ejemplo n.º 1
0
 /// <summary>
 /// Matt Lapka
 /// Created: 2015/02/14
 /// Get a single ItemListing object from the database
 /// </summary>
 /// <param name="itemListID">the ItemListing ID in string format</param>
 /// <returns>A single ItemListing object meeting the criteria</returns>
 public ItemListing RetrieveItemListing(string itemListID)
 {
     try
     {
         return(ItemListingAccessor.GetItemListing(itemListID));
     }
     catch (Exception ex)
     {
         throw;
     }
 }