up vote 1 down vote favorite
share [g+] share [fb]

I have a simple solution with the following projects as follows (base namespaces match the project name)...

MyCompany.MyProduct.BusinessLayer
MyCompany.MyProduct.Web.Service
MyCompany.MyProduct.Web.Site

I'm just trying to find a better name for BusinessLayer, I just don't really like it for some reason. So my question is what do you call your BusinessLayer projects/namespaces.

article on namespace guidelines http://msdn.microsoft.com/en-us/library/ms229026.aspx

link|improve this question
Polls tend to work better if they're marked Community Wiki (edit your post and click the checkbox). Otherwise, they tend to encourage duplicate responses (rather than voting up/down on existing answers). – Shog9 Feb 23 '09 at 20:28
Polls don't work at all in the SO format imo. Either duplicates happen anyway or since anyone can add a valid poll response, the results are so diluted as to be useless. – EBGreen Feb 23 '09 at 20:32
Polls also suffer from the "fastest gun" problem, not that it matters too terribly much. – Robert S. Feb 23 '09 at 20:34
I like your question jayrdub – matt_dev Feb 23 '09 at 21:00
Yeah, the incredible accuracy of normal Internet Polls just doesn't carry through to SO polls. ;-P I suspect these questions get asked more in the hopes that someone will provide a well-reasoned answer that the author agrees with, than out of any real desire for consensus. Meh... – Shog9 Feb 23 '09 at 21:19
show 1 more comment
feedback

10 Answers

up vote 5 down vote accepted

I would drop the "Layer" suffix: MyCompany.MyProduct.Business

link|improve this answer
feedback

We just use BL because it stands for both Business Layer and BudLight.

link|improve this answer
feedback

In the past I've just called it "Business".

link|improve this answer
feedback

I do Client.Project.BusinessObjects

link|improve this answer
feedback

In Java, I use the com.companyname.applicationname.* "standard," even though it's a little old-school.

In C#, I use the CompanyName.ApplicationName.* approach.

In both cases * will usually be business for the business layer, data for the data layer, and so on.

link|improve this answer
feedback

Our Business Logic and Data Access Layers

CompanyName.ApplicationName.BLL CompanyName.ApplicationName.DAL

An alternative might be BusObj or something like that.

link|improve this answer
feedback

Company.Product.FunctionalDomain.Biz

link|improve this answer
feedback

I've seen BusinessLogic, but it as noted by the rest of the answers here a lot of time you will see...

  • MyCompany.MyProduct.DataAccessLayer (or DAL)
  • MyCompany.MyProduct.BusinessEntities (or BusinessObjects)
  • MyCompany.MyProduct.BusinessLogic
  • MyCompany.MyProduct.Web.Service
  • MyCompany.MyProduct.Web.Site

Another good reference for this type of stuff is the Framework Design Guidelines book.

link|improve this answer
feedback

Most of the apps we work on use DAL for Data Access Layer and BR for Business Rules...

link|improve this answer
feedback

Ours are:

CompanyName.CentralClassLibrary
CompanyName.Utilities.*
CompanyName.TradingTools.*

The first is mostly classes from the original version of our application, which describe the central trading objects. The second is classes that provide non-trading specific functionality (configuration, multi-machine, etc.) The third is for specific domains of trading (one for each service we talk to, one for calculating value, etc.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.