Hello Guys thanks for the input but I guess I make myself not very clear sorry about that.
I will explain in more detail what I want to do.
Example I have 3 Entrys
CustomerEntrys
AddressEntrys
ProductEntrys
Now I have an Webservice Function that receive XML and read
with readXML into the Entrys.
But now i need to have 3 Functions for each Entry
or need to do like that
Function SaveEntry(ByVal entryName As String, ByVal entryXml As String)
Select Case Entrys
Case "Customer"
Dim Customer As New CustomerEntity()
.......
Case "Address"
Dim Address As New AddressEntity()
.......
I look for a smarter solution to be more fleaxible is possible,
Thanks
Roman