Données de regroupement MVC PHP

// Bundeling Data php mvc 
it is performance  improvment  technieques
  //
  // the normaal way, it is discourage to call the businesslayer twoice .
  
  $bankServic=$Bankservice();
$bankSevrvice->bankSevrviceFrom($from , amount);
$bankSevrvice->bankSevrviceTo($to , amount);

// with bundeling technieques
  $bankServic=$Bankservice();
$bankService->bankSevrviceFromTo($from ,$to , $amount);


AHMAD ALHAMADA