I have a business logic layer object for my customer开发者_运维问答s. It has a lot of different fields, around 100: Id, Name, and other fields.
CakePHP doesn\'t seem to ever mention separating the business logic and data access layers of an app.This is my first MVC app and my \"fat models\" are turning out to be very fat because they contain
I went for an interview, and was asked to show up my Business layer architecture. I have some idea about 3 tier architecture but really no idea, to what to write in front of interviewer.
I read in many books that in a layered architecture a layer should only use the services provided by the layers below it. The commonly used layers are in an enterprise application are:
I have a web app with a presentation layer and a business layer as individual projects. One being a web application and the other being a class library. I have added a web reference to the web applica
I\'m charged with the support of a C# Winforms app which uses BusinessObjects (containing no logic, just properties) and a BusinessLayer with classes (\'Helpers\') that manipulate those entities.
I am building a middle size system and I am facing a problem that probably some of you have faced before. In my business layer I return business objects with a subset of properties that are important
I\'m creating an application which is split into a Data Layer (using repository pattern & EF 4.0), a Business layer (POCO\'s with开发者_C百科 additional logic) and a Service Layer (which is expose
I\'m developing a Web App designed to query a large database table based on the users selection of criteria.In some cases, they may know and enter the primary key, other times they might want to see r
I have a Business Layer class that uses LINQ to return IQueryable data to a GridView in the User Layer. I want it to return only a single page of data; however, it is returning the entire query. I hav