N-Tier architecture refers to the architecture of an application that has at least 3 "logical" layers or parts that are separate.
I usually name by classes in the Business project as Manager.cs, like BaseManager.cs, CommentsManager.cs, ProfileManager.cs, etc... …
c# .net naming-conventions class n-tier-architectureHello I am a newbie to n-tier architecture and was trying to find out the difference between what an application …
web-services service business-logic n-tier-architectureIn the past I have primarily built all my web applications using an N-tier architecture, implementing the BLL and DAL …
model-view-controller n-tier-architectureI have been practicing DDD for a while now with the 4 distinct layers: Domain, Presentation, Application, and Infrastructure. Recently, I …
domain-driven-design data-access-layer n-tier-architectureUsually when i layout an n-tier architecture for a project I have the following layers: Domain (domain model, repository contracts) …
asp.net-mvc asp.net-web-api n-tier-architectureI am using a layered architecture with the Entity Framework as my datalayer with a bunch of repositories on top …
c# entity-framework data-access-layer n-tier-architectureI've read conflicting philosophies on where data validation should happen and it's just confusing me more. Some say it should …
database validation n-tier-architectureIn an attempt of building a 3-tier architecture c# asp.net application, I've started building a class that is database …
c# asp.net drop-down-menu n-tier-architecture business-objectsI am designing an ASP.NET MVC application using the Onion Architecture described by Jeffrey Palermo. It is an ASP.…
asp.net-mvc architecture n-tier-architecture onion-architectureIn my Spring MVC application I am using DTO in the presentation layer in order to encapsulate the domain model …
java spring architecture spring-mvc n-tier-architecture