
_vendVendorV2Entity.VendorPartyType = _reqContract.parmVendorPartyType(); //request is string
DirPartyType vendorPartyType = dictEnum.symbol2Value(_vendVendorV2Entity.VendorPartyType);
if (vendorPartyType == DirPartyType::Organization)
{
}
else if (vendorPartyType == DirPartyType::Person)
{
}
else
{
}
_vendVendorV2Entity.VendorPartyType = _reqContract.parmVendorPartyType(); //request is string
int vendorPartyType = dictEnum.symbol2Value(_vendVendorV2Entity.VendorPartyType);
if (vendorPartyType == enum2int(DirPartyType::Organization))
{
}
else if (vendorPartyType == enum2int(DirPartyType::Person))
{
}
else
{
}