/// <summary> /// Gets a payment method from a specfic store. /// </summary> /// <param name="storeId">Id of the store.</param> /// <param name="paymentMethodId">Id of the payment method.</param> /// <returns>A payment method object.</returns> public static PaymentMethod GetPaymentMethod(long storeId, long paymentMethodId) { return(TeaCommerceHelper.GetPaymentMethod(storeId, paymentMethodId)); }