I have an application where I present the data to the users by using Silverlight 4 and WCF RIA Services. In this application I have also a module (console app) which is responsible to store in the DB some flat files (xml files).
My question is: According to the best practices which one of these two options is the best?
- Reuse the WCF RIA Services also for the Console App to store the flat files in DB.
- Create others WCF Services specific for the Console App to store the flat files in DB (with ServiceContract).
Any idea? Or other options? THANKS!