Files mapping architecture
Posted
by user326198
on Stack Overflow
See other posts from Stack Overflow
or by user326198
Published on 2010-05-11T08:27:23Z
Indexed on
2010/05/11
12:14 UTC
Read the original article
Hit count: 197
I need to know How I can achieve this goal by classes :
we have two different applications in the company (App1 , App2)
Appl can export xml with know items ( ID , Name)
we need app2 to import this data but App2 display different items (CarID, CarName) and this items defined like this with the mapping info
<CarID>
<Mapping name="ID"/>
</CarID>
<CarNAme>
<Mapping name="Name"/>
</CarNAme>"
How I can achieve this as classes or ARCHITECTURE , i will develop this with c# I need one interface because we may support different type of files not just xml
© Stack Overflow or respective owner