MVC or Extract Service Layer

Posted by Lizzard on Programmers See other posts from Programmers or by Lizzard
Published on 2012-10-25T16:10:23Z Indexed on 2012/10/25 23:15 UTC
Read the original article Hit count: 100

Filed under:
|
|
|

we have an application that is built with .Net MVC. We are now tasked with exposing API's to third parties. Members on our team want to just continue down our current path and just use more controllers so we can reuse the backend of our current application. Logic tells me we need to create a seperate service layer when more clients are going to be accessing it, but .Net MVC seems to take care of all of this. Is it really acceptable architecture to use controllers in a stand alone application to expose API's and what would be the potential gains of extracting the service layer out?

© Programmers or respective owner

Related posts about asp.net-mvc

Related posts about wcf