i suggest using the adpaters approach. the BO's "must" be ignorant
regarding the DAL.
looking at IOC, DI, Repository and the Microsoft EF guys architecture
you can conclude the general direction of things is adapters.
your solution should be tailored using a bounch of the above. as a
good practice i would leave the BO's out of the picture!
On Sep 22, 12:47 am, Abraham Shilon <
avi.shi...@gmail.com> wrote:
> A custom type that is built (using the Builder pattern) according to some
> business logic is sent to the web service.
> The web service does its stuff and returns another custom type, that is then
> built into a BO/Domain Object.
> I can't tell the exact types that are sent and received. I'll have to ask
> one of the business developers (which will be only tomorrow morning).
> But I can say that there are several such web services, each with its own
> custom types, so it's might get a little nasty.
> If we can come up with a clean and elegant solution, that would be great.
>
> Thanks :)
>