Changing web application asp.net MVC [closed] - asp.net-mvc

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
We have a web application for managing projecs, meeting etc in our company that is written in asp.net MVC . right now each department have their own copies. 5 department 5 copies. how can we make it as just one app and fix this?

by centralizing your database at a central location you can easly do it or by using microsoft sync framework you can easly sync data to one db to another

I would create a central mvc project, setup separate areas for each department, the source for each area into the main project.
You can also use each project as an area as outlined here:
http://nileshhirapra.blogspot.co.uk/2012/02/aspnet-mvc-pluggable-application.html

Related

.NET MVC application into an N Tier application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
In either .NET MVC 5 or a .NET Core MVC application, is it possible to split your Models into a Data Transport Layer, your business logic into a Business Logic Layer and your Db Contexts into a Data Access Layer? I essentially would want the main project to really only have controllers that call to the BLL, and display the results in the view. That way there is portability with my application if I wanted to exchange the main project, which is essentially just a presentation layer.
I know I am going to be needing this kind of architecture as I am building an application that will share a lot of the same business logic between the two applications. What ways can I still get access to helpful features like scaffolding a model into views/controller, and still maintain that portability? Is there a way to do such a thing?
Please note, that this project may be on a short budget, so it is pretty essential to be able to maintain the scaffolding tooling.

Reduce the size of asp.net mvc web application using only the packages? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
How do create asp.net mvc web application without any package type Owin, Twitter and the like? I created ASP.Net MVC web application and watch the project is too big = ~ 110-120 MB. It's too large file size. It is clear that the need to remove packages. What to do?
While creating the MVC project, click the "Change Authentication" button and select "No Authentication".

VS 2013 - How To Add Features To An Existing Web Project? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I just created an empty web application in Visual Studio 2013.
From then on, how would I add MVC and/or Web API capabilities similar to how we're able to specify those when creating a project?
In another somewhat similar case, I created an MVC app with no authentication (i.e., users don't log in to the site). How do I modify/set up this project to implement individual users and add Web API capabilities?

What is Full stack mvc framework? How Grails is full stack framework? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new to Grails and in the Grails website I found the following sentence.
Grails is an Open Source, full stack, web application framework for the JVM.
What is full stack web application framework? How Grails vary from Struts?
Thanks
Normally when you build applications you need some functionalities:
Database managment (ORM)
Presentation (User Interface)
Service Layer
Configuration
You can build your application using one API/Framework for each area.
The full stack means that Grails will provide you functionality to all those areas so you don't need to look for a set of frameworks, just use one.

PrestaShop import items to show in iOS application [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a new project in which I need to work on PrestaShop and create a universal mobile application. I am not getting anything anywhere about how you use it in an iOS application to get the items in different categories, Search API for items, etc.
PrestaShop implements a full-featured RESTful web service.
You need to enable the web service in Advanced Parameters > Web Service, then to use the guides and how-to located at http://doc.prestashop.com/display/PS15/Using+the+PrestaShop+Web+Service
You also have an example library on github: https://github.com/PrestaShop/PrestaShop-webservice-lib

Resources