public void SetItemPrice() { if (!string.IsNullOrEmpty(currentTransaction.transactionPrice)) { productPrice.Text = "$" + currentTransaction.transactionPrice; currentTransaction.transactionServiceFee = BaseFunctions.GetServiceFee(currentTransaction.transactionPrice).ToString(); } else { productPrice.Text = "$0.00"; } }