开发者

ASP.NET MVC DRY

开发者 https://www.devze.com 2023-01-27 21:06 出处:网络
I have a project which has Area called Admin. There is a class called MenuTab with code logic which is used in Admin Area Master page and on the root Master page. Now I want admin Area to fully decoup

I have a project which has Area called Admin. There is a class called MenuTab with code logic which is used in Admin Area Master page and on the root Master page. Now I want admin Area to fully decoupled and not rely on root pages/code.

Should I create MenuTab class for Admin Area and another for root pages so that when I remove Admin area from project to use it somewhere else work smo开发者_C百科othly OR keep MenuTab class at the root level and use it everywhere. What approach should I use?

Hope you understand my question.

How can I make Admin area independent?


Create a common assembly which all of your other web projects inherit from.

This is pretty common practice.

0

精彩评论

暂无评论...
验证码 换一张
取 消