J
joey eisma
Guest
Hi, Having a super class fi.cls (financial instituion) subclassed by bank1.cls bank2.cls ... would you do dynamic-new() or do this (could be lengthy depends on how many banks)? def var bk as class fi. case bank: when "bank1" then bk = new bank1(). when "bank2" then bk = new bank2(). ... end case. bank1, bank2... may have different methods/properties. would you dynamic-invoke()? or how would you do it differently? TIA!
Continue reading...
Continue reading...