creating a wrapper around a 3rd party assembly - swap out and decouple
- by mrblah
I have an email component that I am integrating into my application, looking for some tips on how should build a wrapper around it so I can swap it out with another 3rd party component if needed.
My approach right now is it:
build an interface will the functionality I need.
create a class that implements the interface, using my 3rd party…