I’ve been outsourced for an ASP.Net project of another organization to build a large enterprise application. Currently almost 80% of the work has been completed. I found that the developers did not implemented any architecture in this application. All the work is done in the code behind file (*.aspx.cs). Even the database calls, sql scripts, etc. are on the code behind file. The entire solution has only one project, which is a Website. All the coding, .aspx file etc. comes under it. I know that the maintainability , catering to change requests, etc. of this project will be a nightmare.
But I would like know about the impact for the functionality of this project once the no of users increased from hundreds to thousands and more.
Will it be an issue, for not having a Data access layer and maintaining db connections in a once single place?
What will be the overall impact of the project from the functionality wise due to not implementing proper system architecture?
I need some hard point to convince them to go for a proper system architecture, which may be a whole system rewrite. So would be grateful if you are able to share your expertise of this matter. Thanks.
