A Service Layer represents one application boundary and consists of a set of available operations from the perspective of interfacing client layers. It encapsulates the application's business logic, controlling transactions and coordinating responses in the implementation of its operations. In ...
0
votes
0answers
20 views
Type-safe IDs in service layer for error prevention
I'm currently writing on the business logic of an Java-application. I've splitted it into domain layer and service layer. The service layer provides interfaces which allow access on the data via data ...
0
votes
2answers
66 views
Interaction of services in the service layer
What is the best way to organize interaction between services in the service layer?
For example, I have document service and product service. In my case products can have their own documents and to ...
3
votes
1answer
93 views
Domain services and application services for graphics-based applications
I am trying to wrap my head around the domain driven design concept of the service layer, both application services and domain services. Virtually all of the examples I've come across have to do with ...
0
votes
2answers
53 views
Service layer - returning validation & functional results
I'd like to know the best practice or any suggestions for returning validation results from a service layer which is going to be used in ASP.NET MVC.
Option 1
public ...
0
votes
1answer
100 views
Unable to Update Many to Many Relationship. Entity Framework Code First
I am trying to update a many to many relationship that I have setup in Entity Framework using Code First. I've created the following Models.
[Serializable]
public class ClientFormField : FormField
{
...
2
votes
2answers
100 views
Controller injects Service class dependencies OR leave it to Service to resolve its own dependencies ? what is the preferred way
I have the following classes, with latter service class is coupled to a specific container, but if I use former why should controller class inject service class dependencies instead of just using the ...
0
votes
2answers
67 views
Put this logic into a Repository or a Service
Should I put this method into my ISchoolclassCodeRepository or my ISchoolclassService?
/// <summary>
/// The client passes newly created and existing schoolclass codes.
/// The ...
-1
votes
2answers
66 views
Work around for Generics and Dynamic arguments
I'm trying to write a wrapper to hide much of the code I find myself repeating for each db call in Dapper. (namely the Sql Connection, try, default catch and finally) Essentially I would like to do ...
6
votes
2answers
364 views
Share DbContext across Repositories in MVC Web App
Question
What is the proper way to share an EF DbContext across multiple repositories in an MVC web app? Is it prudent/necessary to do so, what are the pitfalls of doing or not doing this?
...
1
vote
0answers
55 views
Can we use DAOs directly in controller instead of business layer objects?
I am not just getting one thing.. I am working on some internal project.. (java/spring/hibernate). Iam using dao layer, presentaion layer.. Is that necessary to use Business layer in my app?
The ...
2
votes
1answer
42 views
Can anybody tell me what does it exactly mean by a 1 tier service?
I read few of the old questions but I would like know what are the prime differences between 1 tier, 2 tier and 3 tier business services. What do they really mean when they say we have a 1 tier ...
1
vote
1answer
94 views
Should I Create Domain Object Defaults in my Service Layer?
I am building a MVC application with Zend Framework. The Model includes separate Domain and Mapper layers, and a Service layer sits on top.
For some of my Domain objects, when I create a new ...
0
votes
2answers
160 views
Authenticated User and Service Layer
I have a MVC 4 application which uses a Service Layer in a different class library.
Some of the calls to that service layer needs to know which uses is requesting the data.
The data records is ...
1
vote
1answer
148 views
Implement Service Layer into Yii Framework
I have started using the Yii framework and am really enjoying the way they do things. Though 1 thing I don't entirely agree with is the all the logic to do with interacting with the database is told ...
6
votes
2answers
893 views
ASP.NET MVC Business Logic in Domain Model vs Service Layer
I have been reading about where to put business logic in ASP.NET MVC Project for a while and I still can't make some things clear.
1 - Domain models. What are these really? In my Model folder I have ...
0
votes
1answer
45 views
Binding ObjectDataSource to service or repository?
Roughly following some designs I've seen, I'm building an ASP.NET application where each of my business objects has an associated Repository and Service. The repositories use nHibernate's ISession to ...
0
votes
1answer
162 views
Designing DTO's and DO service layer
I'm designing a new large scale application which needs to be as flexible as possible.
I chose designing mainly with DDD..
My question is about transferring DTO object's back to DO objects in my ...
1
vote
0answers
85 views
Repository, Service layer and Query objects
I'm trying to implement an N-tier architecture using repositories and service layer in asp.net mvc application.
A Service object can own multiple repositories to collect all data it needs using the ...
3
votes
1answer
249 views
How can I use Yii components while keeping my service layer abstracted?
I like and use the Yii framework, particularly its "components", which are lazily-instantiated and you can swap them in or out in your configuration file. Kind of like a dependency injection-lite.
...
3
votes
3answers
190 views
ObservableCollection in the service layer of the WPF MVVM application
Examples of WPF MVVM apps I've seen on the Internet consider VM a layer which interacts with a service layer which either uses "old" events from an external library, or interacts with web using HTTP ...
2
votes
1answer
211 views
Design Patterns - Service Layer
I am currently reading a lot about Design Patterns and I have been watching various Pluralsight videos from their library. Now so far I have learnt the following:
Repository Pattern
Unit of Work ...
1
vote
1answer
113 views
How organize layers in a project using Entity Framework?
I have a dilemma about organizing my projects. I'm building an application for sending newsletters. I divided it into three projects in my solution: Newsletter.UI (WPF), Newsletter.DAL and ...
0
votes
0answers
28 views
service layer for Employee
i have Employee Project in which i have 12 package inside Employee project i have design EmployeeDAO,EmployeeDataHolder Exception Handler,UtilPackage for Connection,ResourcePackage etc now i have to ...
0
votes
1answer
46 views
Replacing Tuxedo calls with JDBC
I have been tasked with replacing some Tuxedo services with the equivalent JDBC calls.
Considering a single Tuxedo service, I have started by creating a JDBC DAO, which implements the same interface ...
0
votes
0answers
41 views
Where to place modules related to AI in MVCS
I am bit confused, what is the right place to place the modules related to AI in an MVCS pattern ? Alongside with Model View Controller and Services folder ?
V.
2
votes
3answers
119 views
Repository pattern and collection error handling
Say I've got the repository:
interface IRepo
{
Foo Get(int id);
void Add(Foo f);
}
Now, there is requirement that I can only have one Foo with given property, say...Id. Obviously, if I ...
2
votes
1answer
395 views
JSF Service Layer
I am not sure whether my approach with the MVC environment in JSF is the best way to go. Since I am trying to get the most out of JSF I would like to know how my Service Layer (or Model, speaking in ...
1
vote
3answers
154 views
Can a Service Layer contain multiple services?
I'm rearchitecting a large web forms ASP.Net application, inserting a service layer to take away unwanted responsibility from the presentation layer.
I've seen a lot of examples where all the service ...
1
vote
4answers
147 views
How to surface the exception details to the user for resolution in a multi layered application
We have the following code in our Service Layer where we add a new user to the database using EF.
public User AddUser(User user)
{
using (var context = ...
0
votes
1answer
128 views
Service layer ModelState not updating in .net Web API
I'm implementing an MVC solution that has some Web API endpoints for various data queries. I'm using the techniques described in this post to separate my validation concerns to a Services layer.
...
1
vote
1answer
138 views
FluentValidation in a service layer?
I have been using FluentValidation on my View Models in ASP.NET MVC 3 and it works awesome!
I want to now use it as my validation engine for my domain objects inside my service layer.
Can you do ...
0
votes
2answers
318 views
Manager Layer vs Service Layer
In the 3 tier architecture there is Presentation/Web Layer, Service Layer and DB Layer. However in a recent project I worked on I saw a Manager Layer which is new to me. Can you please explain the ...
1
vote
1answer
154 views
ASP.Net MVC Architecture - Missing a layer?
I am using the Entity Framework/Repository-UnitOfWork/Service layer method on this ASP.NET MVC Application and it works great, but it seems a layer might be missing in order to keep the controllers ...
1
vote
1answer
183 views
Using HttpContextBase in Service Layer
I recently started with TDD and dependency injection. This is one BIG Mindset change, and i am still trying to puzzle together all the pieces.
I have a service layer for all the business logic to ...
1
vote
3answers
215 views
Service layer design. Reason to put things into a service layer
I have a few design-related questions:
should service layer interfaces reside in a domain layer? For example user service?
what are the primary reasons to move a code part to a separate layer?
...
1
vote
1answer
121 views
Application Architecture Advice
I have been studying various patterns for layering an MVC application and need a little advice. What I currently have is the following:
1) POCO Domain Model, no business logic at all, so basically an ...
0
votes
0answers
61 views
Decouple .net service implementation from the business logic through an interface
In the microsoft application architecture guide, microsoft describes the serivce implementation with the following note:
<< Interaction with the business layer should only be through a ...
1
vote
1answer
165 views
How to generate URL in service layer of ASP.NET MVC 3 project
I am looking for a simple way (if it exists) to generate a URL in a service class for a specified controller and action in an ASP.NET MVC 3 web application. I want to do this in the service layer ...
1
vote
1answer
156 views
Repository, Service layer and method placement
I've been reading a lot on the role of the repository pattern and the service layer and I'm (I think) well aware of the distinction between the two. But a simple problem has me scratching my head for ...
1
vote
0answers
161 views
Doctrine_Query, criteria as objects, & the Visitor Pattern. Possible?
I've been working on a bunch of projects lately with Doctrine 1.2 integrated into Zend Framework 1.11, and it has been really fun.
One of the most common methods I have implemented in my service ...
0
votes
2answers
313 views
ASP.NETR MVC client validation from Service Layer
I'm following this article
http://www.asp.net/mvc/tutorials/older-versions/models-(data)/validating-with-a-service-layer-cs
to include a Service Layer with Business Logic in my ASP.NET MVC Web ...
0
votes
0answers
260 views
ASP.NET MVC razor Multiple File Upload with Request-Response Service Layer
I am currently designing a social media site using the request-response service layer pattern with asp.net mvc. A part of the site needs to have multiple file upload capabilities. Should I create a ...
0
votes
2answers
427 views
Move Data Access logic from the business layer to the data access layer
I am doing an asp.net mvc application having a Data Access Layer (DAL).
Having done 90% of my database CRUD code I asked myself wether I need a Business Layer.
But what should I put there? All my ...
1
vote
1answer
212 views
If I use a facade class with generic methods to access the JPA API, how should I provide additional processing for specific types?
Let's say I'm making a fairly simple web application using JAVA EE specs (I've heard this is possible). In this app, I only have about 10 domain/data objects, and these are represented by JPA ...
1
vote
1answer
140 views
MVC Service layer validation within WebForms application
We have a service layer within our MVC3 application using an almost identical approach as described here: ...
0
votes
1answer
105 views
How do you namespace your service layer?
So for namespacing my repository layer, it's easy. I do something like this:
The interfaces live in Models.Repositories. So maybe I'd have Models.Repositories.IUserRepository or something.
Then I ...
0
votes
1answer
138 views
Sorting in EF with Repository and a Service Layer
I have a couple of classes that implement a common repository interface, one of the methods in these classes is a method that returns a Paged Result and takes a
Expression<Func<T, bool>> ...
1
vote
1answer
592 views
Service layer repeating functions in repository layer
I've got an ASP.NET MVC application, and I'm using the repository pattern, with service-specific repositories. I'm finding my setup is starting to feel very repetitive.
My layers look like this:
...
4
votes
4answers
1k views
.NET MVC Best practices as far as keeping the controller from being very unreadable
I have been developing my first large (for me) MVC project for a couple of months now and things are getting exceedingly difficult to navigate.
I have been slacking off on refactoring and am seeking ...
1
vote
1answer
255 views
External API Calls - Data Access Layer or Service Layer?
I have an N-tiered application:
Database
Domain Layer
Data Access Layer
Service Layer
Presentation Layers (iOS, Android, MVC 3)
I am trying to employ the Google Api for Picasa for users to upload ...

