为应用程序前端命名新程序集
我正在寻求一些命名新程序集的建议。 该项目是一个使用 WPF 的多层富客户端应用程序,我们为除前端之外的所有程序集(数据层和业务层)提供了良好的名称。
相关程序集包含实际的用户界面和数据绑定类。
我们希望它是简短且具有描述性的内容,例如:
xxx.xxx.UI
xxx.xxx.FrontEnd
xxx.xxx.ViewModel
不幸的是,它们都有点蹩脚。
任何建议都会有帮助。 想到什么就说什么。
谢谢你!
Im after some suggestions for naming a new assembly. The project is a multi-tier rich client app using WPF and we've got good names for all the assemblies (data and business layers) except for the front end.
The assembly in question holds the actual user interface and classes for data binding.
We want it to be something short and descriptive like:
xxx.xxx.UI
xxx.xxx.FrontEnd
xxx.xxx.ViewModel
Unfortunately they're all a bit lame.
Any suggestions will be helpful. Anything that comes to mind.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我使用的。
UI/演示 Teir = Company.Application(索赔、承保等).Module
业务层 = Company.Application.Model
数据层 = 公司.应用程序.数据
测试Company.Application.Test
因此每个逻辑单元都有一个Model项目、Module项目、Data项目和Test项目。
布雷特
Here is what I use.
UI/Presentation Teir = Company.Application(Claims, Underwriting, etc).Module
Business Tier = Comapny.Application.Model
Data Tier = Company.Application.Data
Test Company.Application.Test
So every logical unit has a Model project, Module project, Data Project and Test Project.
Brette