you have this:
Public Function ListClienteParceria(ByVal CPA_PARCERIA As Integer) As EmpresaParceriaInfo
Return CType(CBO.FillCollection(DataProvider.Instance().ListCasaSoft_ClienteParceria(CPA_PARCERIA), GetType(EmpresaParceriaInfo)), EmpresaParceriaInfo)
End Function
but it really should be this:
Public Function ListClienteParceria(ByVal CPA_PARCERIA As Integer) As EmpresaParceriaInfo
Return CType(CBO.FillObject(DataProvider.Instance().ListCasaSoft_ClienteParceria(CPA_PARCERIA), GetType(EmpresaParceriaInfo)), EmpresaParceriaInfo)
End Function
Intuition without concept is blind; Concept without intuition is empty -- I. Kant : Critique of Pure Reason
In the olden days, books were burned. Now the website is shut down.
KodHedZ Software Development