public List <GiftCard> get_all(string sortField = "", string sortOrder = "") { // Create the list to return List <GiftCard> posts = GiftCard.GetAll(sortField, sortOrder); // Return the list return(posts); } // End of the get_all method