Please help me optimize/ refactor this code.....
private sub test
Call PopulateColorsWithMasterIdentity(Colors, Id)
Call PopulatePartsWithMasterIdentity(Parts, Id)
Call PopulateSaloonsWithMasterIdentity(Saloons, Id)
End sub
Private Sub PopulateColorsWithMasterIdentity(ByRef MyList As List(Of entclsCriticalPartSetColor), ByVal Id As Integer)
For index As Byte = 0 To MyList.Count - 1
MyList.Item(index).CriticalPartsSetId = Id
Next
End Sub
Private Sub PopulatePartsWithMasterIdentity(ByRef MyList As List(Of entclsCriticalPartSetPart), ByVal Id As Integer)
For index As Byte = 0 To MyList.Count - 1
MyList.Item(index).CriticalPartsSetId = Id
Next
End Sub
Private Sub PopulateSaloonsWithMasterIdentity(ByRef MyList As List(Of entclsCriticalPartSetSaloon), ByVal Id As Integer)
For index As Byte = 0 To MyList.Count - 1
MyList.Item(index).CriticalPartsSetId = Id
Next
End Sub
*EDIT*
Actually, Is it possible to use "Polymorphism"? I mean, instead of having 3 different parts of populateXXXWithMasterIdentity, can I have one PopulateListWithMasterIdentity like this one:
Private Sub PopulateListWithMasterIdentity(MyList As IList(Of entclsCriticalPartsBase), Id As Integer)
.....
End Sub
Thank you