ASP.NET MVC DDD电子商务-后台与后台分离
我将使用域驱动设计编写一个 ASP.NET MVC 2 应用程序。我正在尝试找出如何将管理员与店面分开。我可以创建 2 个 MVC 项目,但关于它们的服务,它们是否也应该位于单独的项目中,或者我可以使用 CatalogManager(例如,用于管理和店面)并混合所有服务吗?
目前,我的领域的每个部分(服务、基础设施、模型等)都有一个类库。
谢谢。
I'm going to write an ASP.NET MVC 2 application using Domain Driven Design. I'm trying to figure out how to separate the Admin from the store front. I could create 2 MVC projects, but regarding the services for them, should they be in separate projects as well or could I use the CatalogManager, for example, for both, Admin and the store front, and mix up all the services?
Currently I have a class library for each part of my domain (services, infrastructure, model, etc.)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看 区域 作为一种方式将您的应用程序分成逻辑域
You might want to check out Areas as a way to separate your application into logical domains