vote up 2 vote down star

I don't know if this has been discussed.

Let's say you are in a three developer team. How would you share:

  • models - views - controllers
  • by controllers
  • by use cases
  • something else?

Maybe someone says this has nothing to do with asp.net mvc but I think it affects somehow.

flag

3 Answers

vote up 3 vote down check

Do it by story. But by far the best way is have 2 developers work on the same story. Working together across the whole architecture. They can share the tasks as they are needed, creating the view or the model or the stored procs, and tables etc. There will be some stepping on toes but at those times they can pair program. Try to think of the 'team' doing a story. Rather than a single developer, and if they all work on the same story at the same time, the development should flow at a cracking pace. As Kieron says, you need a ten minute design meeting with the whole team, to decide how its going to hang together.

link|flag
vote up 2 vote down

We break it up like this:

Team A:

  • Views
  • CSS
  • JavaScript

Team B:

  • Controllers
  • Models
  • Database

We use Mind Mapping applications to work out what Controllers and Views we need first, so the whole team knows how to tie things together.

It's worked brilliantly for us, increased our productivity substantionally.

link|flag
vote up 1 vote down

By use case or task. Helps spread the knowledge about the entire process around.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.