Tagged Questions

0
votes
1answer
32 views

RSpec in Rails: How to skip a before_filter?

Hello everyone, I am trying to test my controller and maintain separation of concerns. The first concern is "Who is able to execute which action?" I am using authlogic for authe …
2
votes
4answers
111 views

MVC - is it just a 3 tier model?

Just began researching mvc, and am not sure I grasp it yet. From what I gather it seems like an implementation of a 3 tier solution ie Model corresponds to DAL, Controller to busi …
2
votes
4answers
77 views

How have you combined the advantages of the direct View-to-Model approach and MVVM in your WPF projects?

In our application we have many Model objects that have hundreds of properties. For every property on the model: public string SubscriptionKind { get; set; } ...100x... we had …
3
votes
5answers
70 views

Difference between Single Responsibility Principle and Separation of Concerns

What is the difference between Single Responsibility Principle and Separation of Concerns?
1
vote
2answers
82 views

Php: functional style, light-weight alternatives to the separation of concerns in OO MVC patterns?

The problem: I have a legacy php app that is coded in no particular style (some OO, function libraries, some templates, no templates), which I am slowly rewriting, cleaning up, an …
2
votes
5answers
92 views

Ruby on Rails with Repository Pattern?

After working with ASP.Net MVC, it has me thinking about Rails. I worked with Rails prior, but am a little rusty. ASP.Net MVC tutorials recomment hiding data layer implementation …
0
votes
3answers
68 views

Architecture Concerns

My domain classes and persistance logic (Hibernate) are in one project called model. This jar is included within all of my apps. Packaged com.company.model & com.company.persis …
0
votes
1answer
35 views

Where should the viewModel be created?

Hi, I have seen a few examples where the viewModel (in Silverlight apps) is in the UserControl.Resources XAML section of a View. I read that for using Blend, this is a good place …
0
votes
1answer
40 views

How do I separate my entities from database model?

I need some help to organize my data model well. I am writing an app which will be a simple notebook. I use a three-tier architecture = business-logic, data-logic, database access …
0
votes
3answers
101 views

Separation of concerns versus performance?

I have an ASP.NET MVC site and I am trying to figure out separation of controller and model (repository) and HTML helper functionality. The goal is to query a database table of ph …
2
votes
4answers
101 views

MVC… how and why, and what other good options are there (PHP)?

All the examples I've seen of what and how MVC SHOULD be have used classes as the models, classes as the controller, and HTML templates as the view. And all of them consisted of on …
0
votes
2answers
73 views

Validation in the business logic - ASP.NET Web Forms

In reading up on ASP.NET MVC I came across some wonderful examples of validation where the business rules were associated with the model and the UI merely displayed the set of erro …
2
votes
1answer
162 views

Repository Pattern and layering. Where do I apply security?

I am doing my best to design my web app with good separation between the layers. I am using the repository pattern and as such have a SQLObjectRepository which is called by my Obj …
3
votes
5answers
59 views

Where to put functions that help me execute controller tasks?

I'm currently working on an ASP.net MVC web site project. I've put all database related stuff in my model, such as queries and update/delete/save functions. I also created a coup …
2
votes
2answers
50 views

Dynamic animations, Commands and separation of concerns

Scenario: I have a (numeric) textbox, a button, and a label. When the button is clicked I'd like the label to "animate" to the numeric value in the textbox (like a spinning dial) …

1 2 3 next
15 30 50 per page