3
votes
3answers
58 views
Should logging reside within a class who’s primary purpose is not logging?
This is more of a theoretical question. Should logging reside within a class who's primary purpose is not logging?
Here is a simple interface for anything that will preform a cal …
2
votes
5answers
104 views
Advice writing Losely Coupled code with Agile methods or otherwise
I have been reading Robert C. Martin's (aka Uncle Bob) books very intensely as of late. I have found a lot of the things he talks about to be real life savers for me (small functio …
0
votes
1answer
35 views
Defining name strings for NSNotification usage without coupling
I'm going to be using NSNotifications in my app to decouple the code.
I want the compiler to help me when using strings as the names of the notifications, ie, if I mistype one, I …
1
vote
1answer
72 views
Dependency Injection and .NET Attributes
I have a couple of method attributes which do some logging. Our logging code sits behind an interface (ILog) and I'd like it if the attributes were only dependent upon that interfa …
0
votes
1answer
54 views
Menu service in Prism application CAL
Hello all,
I am trying to create a Prism (CAL) framework (this is my first forray into CAL) and am having difficulty devising a service for registering menu items for a region). He …
0
votes
3answers
69 views
Database good system decoupling point?
We have two systems where system A sends data to system B. It is a requirement that each system can run independently of the other and neither will blow up if the other is down. …
5
votes
5answers
287 views
Alternatives to “using” keyword in C#?
I just finished watching an episode of Bob Martin at NDC where he said "using" directives in C# at the top of a page are bad because of the tight coupling they create/imply between …
1
vote
3answers
150 views
Managing resources in a Python project
I have a Python project in which I am using many non-code files. Currently these are all images, but I might use other kinds of files in the future. What would be a good scheme for …
0
votes
3answers
57 views
Handling security and be decoupled
I am trying to design an application in 3 layers :
1) Data access layer
2) business layer
3) UI
I try to keep classes decoupled so on the business layer I have created interfaces …
0
votes
1answer
40 views
Register User Interface Elements in Engine / Controller
Hello everybody!
I am currently writing a little game with standard UI controls.
It is working great so far but what I don't like is that I am managing the controls in the codebe …
0
votes
1answer
56 views
Using interfaces with Linq-to-Sql for decoupling
I am re-factoring a model class into an interface. The model class is auto-generated with Linq-to-Sql.
class FooRepository
{
// ...
public void Add(IFoo foo)
{
…
0
votes
1answer
45 views
.net mvc single admin section multiple sites
Hi,
Desired outcome:
4 customer facing sites as separated projects
1 set of admin code used by all four sites
My current setup is 4 Projects:
Core for models/entities
Data for …
0
votes
2answers
215 views
Using delegates instead of interfaces for decoupling. Good idea?
When writing GUI apps I use a top level class that "controls" or "coordinates" the application. The top level class would be responsible for coordinating things like initialising n …
3
votes
9answers
253 views
Decoupling vs YAGNI
Do they contradict?
Decoupling is something great and quite hard to achieve. However in most of the applications we don't really need it, so I can design highly coupled applicatio …
0
votes
0answers
46 views
How to decouple an app’s agile development from a database using BDUF?
G'day,
I was reading the article "Database as a Fortress" by Dan Chak from the excellent book "97 Things Every Software Architect Should Know" (sanitised Amazon link) which sugges …
