4
votes
1answer
135 views

OOP: Need tips of my approach in .Net

I am looking for some different approaches to this following OOP scenario. Dim pb As Object = Nothing If radCars.Checked = True Then Dim productBase As ProductsBase(Of CarColumns) ...
3
votes
1answer
174 views

Repository Pattern Review

I have following code for a library management system. Is the following code a proper implementation of the Repository Pattern? How can I adapt this code to use generics? Should I let ...