sathyashrayan

Untitled

Aug 5th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. namespace Attributes\Service;
  2.  
  3. use Attributes\Model\EavAttribute;
  4. use Attributes\Model\EavAttributeInterface;
  5. use Attributes\Repository\EavAttributeDbInterface;
  6.  
  7. class EavAttributeService implements EavAttributeServiceInterface
  8. {
  9.     protected $_eavAttributeDb;
  10.     public function __construct(EavAttributeDbInterface $eavAttributeDb){
  11.        
  12.         $this->_eavAttributeDb = $eavAttributeDb;
  13.        
  14.     }
  15.     public function find($id){
  16.        
  17.     }
  18.     public function findAll(){
  19.        
  20.     }
  21.     public function save(EavAttributeInterface $eavAttributeObject){
  22.         print_r($eavAttributeObject);
  23.     }
  24.     public function delete(EavAttributeInterface $eavAttributeObject){
  25.        
  26.     }
  27. }
Add Comment
Please, Sign In to add comment