UFN_BATCHMEMBERSHIPDUES_PAYMENTMETHODCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(11) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 5/3/2024 2:16:45 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=4.0.3700.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_BATCHMEMBERSHIPDUES_PAYMENTMETHODCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(11) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 0 then 'Cash'
when 1 then 'Check'
when 2 then 'Credit card'
when 3 then 'Debit card'
when 101 then 'PayPal'
when 102 then 'Venmo'
when 10 then 'Other'
when 100 then 'None'
end
end