Hey guys,
We have an application that has to perform automotive calculations from various lenders.
The way this has been coded in the past is to create a business and database layer interface, and create seperate assemblies for each lender. So for instance:
BaseInterfaceBusLayer.dll
Lender1BusLayer.dll
Lender2BusLayer.dll
BaseInterfaceDBLayer.dll
Lender1DBLayer.dll
Lender2DBLayer.dll
Lender1Database
Lender2Database
The problem I see with this architecture is that any change to the main interface means changes to all the assemblies, and we have alot of duplication of code (as well as alot of assemblies running around).
The other thing that I'm not a fan of is how we access our objects: we use the CreateObject method to navigate to the physical location of the lender assembly, and pass in the name of the object we want...just seems so VB6.0ish.
Has anyone had experience with a similar situation, and if so how did you architect the solution? I'd like to look at an abstract class factory possibly as a solution, but I can't find an easy answer for how to dynamically assign the lenders (some clients will have 2 lenders, some will have 3, some will have totally different ones, etc.)
Thanks for any input.
D'Arcy
We have an application that has to perform automotive calculations from various lenders.
The way this has been coded in the past is to create a business and database layer interface, and create seperate assemblies for each lender. So for instance:
BaseInterfaceBusLayer.dll
Lender1BusLayer.dll
Lender2BusLayer.dll
BaseInterfaceDBLayer.dll
Lender1DBLayer.dll
Lender2DBLayer.dll
Lender1Database
Lender2Database
The problem I see with this architecture is that any change to the main interface means changes to all the assemblies, and we have alot of duplication of code (as well as alot of assemblies running around).
The other thing that I'm not a fan of is how we access our objects: we use the CreateObject method to navigate to the physical location of the lender assembly, and pass in the name of the object we want...just seems so VB6.0ish.
Has anyone had experience with a similar situation, and if so how did you architect the solution? I'd like to look at an abstract class factory possibly as a solution, but I can't find an easy answer for how to dynamically assign the lenders (some clients will have 2 lenders, some will have 3, some will have totally different ones, etc.)
Thanks for any input.
D'Arcy