Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Domain Driven Design

Domain Driven Design

Little worhsop about DDD done with the 1001pharmacies development team.

Thomas Gasc

April 17, 2015
Tweet

More Decks by Thomas Gasc

Other Decks in Programming

Transcript

  1. Domain-Driven Design How to solve complex needs. [email protected] @methylbro Friday

    17th of April 2015 @1001PharmaDev, Montpellier 1001Pharmacies Talks
  2. 1.focus on the core domain explore model in a creative

    collaboration speak an ubiquitous language within an explicit bounded context prerequisites 3 2. 3.
  3. <?php namespace FOS\UserBundle\Util; use FOS\UserBundle\Model\UserManagerInterface; class UserManipulator { public function

    __construct(UserManagerInterface $userManager); public function create($username, $password, $email, $active, $superadmin); public function activate($username); public function deactivate($username); public function changePassword($username, $password); public function promote($username); public function demote($username); public function addRole($username, $role); public function removeRole($username, $role); }