| AmountAreCompatible Method  | 
 
            Returns true if the two amounts are compatible (e.g. have the same currency).
            
 
    Namespace: 
   Aloe.EnterpriseOne.Model
    Assembly:
   Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
 Syntax
Syntaxpublic static bool AreCompatible(
	Amount first,
	Amount second
)
Public Shared Function AreCompatible ( 
	first As Amount,
	second As Amount
) As Boolean
public:
static bool AreCompatible(
	Amount^ first, 
	Amount^ second
)
static member AreCompatible : 
        first : Amount * 
        second : Amount -> bool 
Parameters
- first
- Type: Aloe.EnterpriseOne.ModelAmount
 The first amount.
- second
- Type: Aloe.EnterpriseOne.ModelAmount
 The second amount.
Return Value
Type: 
BooleanTrue if the amounts are compatible.
 See Also
See Also