Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
13answers
1k views

Why should a web architecture be loosely coupled?

When I look at ASP.NET MVC projects I everytime see loose coupled architecture. For what do I need a loose coupling in a web architecture (if I do not make unit tests)? What are advantages and ...
14
votes
13answers
1k views

Which patterns for loose coupling do you use most?

Lately I have seen a lot of blog posts concerning how to build loosely coupled applications. Which patterns do you use most when creating loosely coupled applications? Dependency Injection? Inversion ...
9
votes
4answers
71 views

How to understand the big picture in a loose coupled application?

We have been developing code using loose coupling and dependency injection. A lot of "service" style classes have a constructor and one method that implements an interface. Each individual class is ...
6
votes
4answers
232 views

I know how to use dependency injection but I recognize no practical advantage for it

It is about this (Inject the dependency) private readonly ICustomerService _customerService; public Billing(ICustomerService customerService) { _customerService = customerService; } versus this ...
5
votes
3answers
180 views

Best way to structure the code for an ASP.NET MVC REST API that is decoupled from the data formats?

I am creating a REST API in ASP.NET MVC. I want the format of the request and response to be JSON or XML, however I also want to make it easy to add another data format and easy to create just XML ...
5
votes
2answers
112 views

What is the recommended way for a model to communicate with a view controller?

For instance, I have a model class which handles receiving bluetooth messages from other iPhones. When I receive one of these messages, I need to update a view. I believe the standard way of doing ...
5
votes
4answers
713 views

How to Implement Loose Coupling with a SOA Architecture

I've been doing a lot of research lately about SOA and ESB's etc. I'm working on redesigning some legacy systems at work now and would like to build it with more of a SOA architecture than it ...
5
votes
4answers
1k views

Loose Coupling and OO Practices for Beginners

Keeping classes loosely coupled is an important aspect of writing code that is easy to understand, modify, and debug--I get that. As a newbie, though, just about anytime I get beyond the most simple ...
4
votes
4answers
110 views

Help with program design

I'm currently creating a simple console-based game in which the player can move between different rooms, pick up and use items, and eat food. In the game's current state that's about it. What I need ...
4
votes
9answers
852 views

Do you define an interface for every public class in your domain model? Pros and Cons?

Do you implement an interface for every public class in your domain model? Pros and Cons? Update: If Repositories interfaces and domain model classes are defined in separate assemblies, wouldn't ...
3
votes
1answer
47 views

How do I loosely couple a process to a user interface for VBA and/or .Net?

This question came to mind when I asked to put a progress bar on a long running process where the process has no concept of a user interface. In fact, the process is being written into a library to ...
3
votes
1answer
291 views

loose coupling example

intro code: public interface Course { /** * returns the number of units (hours) a specific course is */ public int units(); /** * returns the number of students signed up ...
3
votes
4answers
150 views

want to move all business logic to BLL layer, but need to pass in formcollection, is that clean?

My asp.net controllers action takes the FormCollection as a parameter. I then loop through my own collection, do a lookup in the form collection for a value etc. I moved all my code to my business ...
3
votes
6answers
702 views

Are there other benefits to loosely coupled code besides TDD?

When I'm doing TDD, it forces me to employ Dependency Injection principle and I end up with loosely coupled code. I was told that it's harder to understand application that has loosely coupled code. ...
3
votes
5answers
195 views

What are some of the things to watch for (pitfalls) while using IOC container?

What are some of the things to watch for (pitfalls) while using IOC container?
2
votes
2answers
54 views

Query regarding dependency Injection in PHP

I've been reading up on dependency injection and I think I pretty much understand the concepts, including constructor injection and setter injection. However, I am unsure what I would do in the ...
2
votes
2answers
124 views

MVC 3 Cannot create an instance of an interface

I'm currently working on an MVC 3 project using Ninject as my DI, the business objects are stored in a separate assembly. I'm running into an issue with the controller parameters, when posting back ...
2
votes
1answer
167 views

AS3 central event dispatcher shared between instances (not static)

I'm building a flash app (just AS3 with FlashDevelop) and I'm having some trouble keeping things loosely coupled around the event system. I've done a lot of reading about central event systems and ...
2
votes
2answers
118 views

Loose coupling via using only primitive types / delegates

I have a conceptual / theoretical question about loose coupling and interfaces. So one way to use an interface might be to encapsulate the parameters required by a certain constructor: class Foo { ...
2
votes
3answers
147 views

How coupled should a domain model be? Should all aggregate roots be interfaces?

We're finally building a domain model. The domain model includes interfaces for loosely coupling domain objects to persistence. I'm however wondering how coupled the domain model objects should be ...
2
votes
3answers
160 views

Which is “better” practice? Passing object references or object method references in Python

I'm writing a small piece of code in Python and am curious what other people think of this. I have a few classes, each with a few methods, and am trying to determine what is "better": to pass objects ...
2
votes
5answers
462 views

Why is tightly coupled bad but strongly typed good?

I am struggling to see the real-world benefits of loosely coupled code. Why spend so much effort making something flexible to work with a variety of other objects? If you know what you need to ...
2
votes
2answers
229 views

ASP.Net MVC - What replaces events to support loose coupling?

What feature(s) of ASP.Net MVC can replace the way events can be used in Webforms to support loosely coupled components? For example, take a simple pager control in Webforms: A page number is ...
2
votes
2answers
234 views

Interfaces and Coupling

From a design and loose coupling standpoint. Is it a good idea to have an interface for each class in a project that might be part of a composition model? I have a project where I'm doing this, but ...
2
votes
1answer
251 views

Multi Tiers / Multi Layers system equals to a tightly coupled system?

I find that whenever I create a layer/tier, I have to translate between one layer to the other, does that mean it is a tightly coupled system? If I was to change a business logic, remove a field in ...
2
votes
7answers
1k views

What are the best tools for Loose Coupling in C#

I was reading Loose Coupling and its benefits which are really good stuff but I started wondering which tools are great to create loosely-coupled solutions ? First what came to my mind are Type and ...
2
votes
4answers
505 views

Loosely Coupled Database Design - How To?

I'm implementing a web - based application using silverlight with an SQL Server DB on the back end for all the data that the application will display. I want to ensure that the application can be ...
2
votes
4answers
701 views

What are techniques for increasing cohesion while maintaining loose coupling?

Loose coupling, high cohesion for a maintainable application This is the battle-cry that I hear over and over. There is plenty of advice on how to loosely couple components. Base on ...
2
votes
1answer
214 views

DDD: What are good reasons for you to loosely-couple Entities?

Back in December, there was this post that was answered with "it is ok to use concret types [for simple object]". But I keep seeing more and more simple entities with interfaces in sample projects, ...
2
votes
4answers
437 views

How can I loosely couple database columns in a .NET application?

I have two versions of an almost identical database. Below I have created an Example table to demonstrate the basic differences, namely the ID column has changed from an Integer Identity to a GUID ...
1
vote
2answers
59 views

Is passing $this to a static method tight coupling?

Here is a simple example: class Class_A { protected $_property; public function method() { Class_B::method($this); } public function getProperty() { ...
1
vote
3answers
36 views

How can I make my MailingList manager class more loosly coupled?

I am working on a simple project involving Prospects and Offers. This project will integrate with a third-party mailing list provider, which will use Prospect objects to manage email addresses on the ...
1
vote
1answer
46 views

Zend Framework Quick Start does it contain coupled objects?

I'm still trying to get to grips with dependency injection and loosely coupled objects. Looking at the Zend Framework Quick Start, I noticed the following methods in the ...
1
vote
2answers
38 views

PHP e-commerce system circular dependency issue

I'm just getting started with dependency injection and I have immediately hit a problem: I have two classes that depend on each other. The classes are Basket and Shipping. In my Basket class I have ...
1
vote
1answer
57 views

Loose coupling NativeMethods

I need to use a native DLL from C#. The DLL exposes several methods which I can access via P/Invoke, and several types. All this code is in a standard NativeMethods class. To keep things simple it ...
1
vote
3answers
47 views

Loose coupling of custom callbacks in jQuery

I was wondering if there exists a design pattern/framework which allows for the loose coupling of callbacks in jQuery. Basically, I have a ajax call which retrieves settings that will be required in ...
1
vote
3answers
51 views

Help with debate on Separation of concerns (Data Access vs Business Logic)

I had a debate with my co-worker on whether certain logic belongs in the data access or business logic layer. The scenario is, the BLL needs some data to work with. That data primarily lives in ...
1
vote
2answers
234 views

.NET REST services, Entity Framework and loose coupling

I'm working on a web application project using ASP.NET MVC3 and database in SQL Server. There is also a mobile application that uses the data from the same database via REST services. Here are some of ...
1
vote
4answers
182 views

Improving Cohesion and Coupling of Classes

I am given this set of code and need to suggest ways to improve the code's cohesion and coupling of the classes. But I thought these classes are quite well de-coupled since it looks like they are ...
1
vote
2answers
126 views

Querying from the Controller a List<T> obtained fromt the repository increase coupling?

I have an ASP.NET MVC application coded with C#. The application is structured this way: Controller Repository LINQ to Entities (Entity Framework) View I use the Repository (_ProductRep) to query ...
1
vote
2answers
107 views

How should AutoMapper access my DAL?

I have an InvoiceInputModel with a ProjectId property which is a reference to a Project entity. Ideally, I want AutoMapper to be able to map an entire Invoice entity from an InvoiceInputModel, which ...
1
vote
2answers
146 views

Common definitions in loose coupled design

I'm trying to put together a very granulary loose coupled design. But I can't decide how to handle common definitions. Right now I seperate concerns by adding it as an external dll. Through ...
1
vote
5answers
75 views

location of interfaces dilemma

Given a code project which is supposed to adhere to the SoC principle by implementing loosely coupled layers, having an IoC container, etc., for example, a simple ASP.NET MVC solution which is ...
1
vote
1answer
69 views

How do I loosely couple javascript on a page and javascript in a modal/jQuery UI Dialog?

I have page where users click an "add person" button. That pops up a modal loaded via ajax and displayed with jQuery UI Dialog. The popup contains a search form where the users selects a person to ...
1
vote
2answers
175 views

How to implement this pluggable mechanism in C# and java?

Let's say I have three object A, B, C. B is the implementation of following interface: interface D { event EventHandler<OrderEventArgs> OrderCreated; event ...
1
vote
1answer
84 views

ASP.Net layered communication

We're developing a layered web application. The specs: 3 layers, data layer, business layer, ui layer. Programmed in C# Data Layer uses the entity framework Currently we plan on having the data ...
1
vote
1answer
88 views

Are self-described / auto-descriptive services loosely or tightly coupled in a SOA architecture?

I consider a self-described / auto-descriptive service as a good thing in a SOA architecture, since (almost) everything you know to call the service is present in the service contract (such a WSDL). ...
1
vote
3answers
179 views

creating a wrapper around a 3rd party assembly - swap out and decouple

I have an email component that I am integrating into my application, looking for some tips on how should build a wrapper around it so I can swap it out with another 3rd party component if needed. My ...
0
votes
1answer
66 views

Entity Framework 4.1 Loose Coupling on Entities

Need a little help please if anyone can shed some light on this. I've created a code-first MVC 3 application which I have working fine. I'm refactoring now to remove as much coupling as possible as ...
0
votes
2answers
53 views

How do I have an object subscribe to another's event while keeping the two loosely coupled?

I have the following bits of code which, in my mind, seem like the bare basics necessary to implement the Observer pattern. Is this standard, or am I doing something wrong? public class LayoutManager ...

1 2