Reputation: 481
So this is more of an advice question.
We have a project that involves an RSS feed and the reports from the feed being saved to a database. This will need to have a Job service so either quartz or chron.
My question is that there are many types of project that we use as developers but in my line of work these are normally web API with MVC hooked up to an angular front end.
With this project we do not need any end points so no need for MVC. Just after some advice as to what others would recommend.
The flow will be 1. c# call to rss feed with a parameter (5 per second max) 2. xml returned 3. xml mapped to a DTO/Modal 4. DTO/modal saved to Database 5. External reporting tool will handle data.
Any help is appreciated.
Thanks in advance
Upvotes: 0
Views: 55
Reputation: 67
You may also consider a windows service project.
https://i.sstatic.net/WIAWC.jpg
Upvotes: 1
Reputation: 21088
I would recommend a console application for the following reasons:
Upvotes: 2