Tagged Questions
The responsibility tag has no wiki summary.
8
votes
13answers
379 views
Who owns documentation?
At my company we are currently re-assessing which team will take on the responsibility of external documentation (end user, training and support documentation). We don't have a dedicated technical ...
6
votes
3answers
66 views
Data Access Layer - Designing Class where should responsibility of creating saving be
I am designing Data Access Layer with ADO.NET 2.0 and C#, Sql Server 2005. I often fight with my brain over where to place those calls. Which way of the below i should follow for maintainable robust ...
4
votes
5answers
160 views
Whose responsibility is it to cache / memoize function results?
I'm working on software which allows the user to extend a system by implementing a set of interfaces.
In order to test the viability of what we're doing, my company "eats its own dog food" by ...
4
votes
6answers
66 views
How do you name a class/method that only calls other methods?
Say I follow the Single Responsibility Principle and I have the following classes.
public class Extractor {
public Container extract(List<Container> list) {
... some extraction
}
...
4
votes
3answers
397 views
MVVM what part of pattern responsible for grouping of datagrid
I've been tinkering around with the MVVM pattern and now I'm trying to implement a little application based on it.
This application has a datagrid in which, surprisingly enough, some data is ...
3
votes
0answers
39 views
How much code should I be responsible for? [migrated]
I'm trying to look for some sort of fuzzy metric that I can use to compare my workload with others in my field.
Through colleagues and exit interviews, I have heard that at my small company I am ...
3
votes
3answers
41 views
In a web MVC framework, who has the responsibility to show 404 page?
In a web MVC model, which class/object has the responsibility/function to call 404 page? Why does it has the responsibility? I think it's the Router, but I'm asking just in case.
...
3
votes
2answers
189 views
Determine responsibility of saving settings (controller, services and mappers)
EDIT:
Because I was to late with awarding the initial bounty of 300 to @arcain I'm reopening. And awarding the additional 150 to @arcain. Unless of course somebody provides even a better answer. :)
...
2
votes
0answers
73 views
Are there any alternatives to ICRA for self-regulated content labeling of websites?
I'm working with a gambling website that historically has labeled itself using the ICRA Vocabulary expressed with RDF and PICS labeling. Its my understanding that these labels were interpreted by ...
2
votes
2answers
129 views
Properly design a code editor application
I'm working on personal project which is basically a code editor. Imagine standard File menu with menu items New, Open, Save, Save As, Save All, Close, Close All.
I'm stuck with proper design. ...
1
vote
3answers
119 views
who should instantiate and assign runtime strategy implementations?
When implementing the strategy pattern, how do you determine which class is responsible
for:
Selecting the specific concrete strategy implementation to pass to the Context class (assuming that the ...
0
votes
2answers
62 views
.Net Class Libraries: Threading responsibility
I am working on a class library and one of the classes is responsible for retrieving an Xml file using XDocument.Load(url) from the internet. Seeing as this operation could take a few seconds to ...
0
votes
1answer
606 views
Interface with service layer or domain objects themselves? (DDD)
I'm still learning about DDD and I have these two (probably simple) questions:
If a Factory creates new object/graph/aggregate instances, but also "reconstitutes" objects/graphs from the Repository, ...
0
votes
2answers
181 views
responsibility based modeling versus class reasons to change
In this text I read
Be alert for a component that is just
a glorified responsibility. A
component is supposed to capture an
abstraction that has a purpose in the
system. It may happen that ...