예제 #1
0
 function __construct()
 {
     parent::__construct();
     $this->revenueDAO = new RevenueDAO();
     $this->typeDAO = new TypeDAO();
     $this->typeRevenueDAO = new TypeRevenueDAO();
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->spendingDAO = new SpendingDAO();
     $this->typeDAO = new TypeDAO();
     $this->typeSpendingDAO = new TypeSpendingDAO();
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->stockDAO = new StockDAO();
     $this->spendingDAO = new SpendingDAO();
     $this->revenueDAO = new RevenueDAO();
 }
예제 #4
0
 public function __construct()
 {
     parent::__construct();
     $this->stockDAO = new StockDAO();
 }
예제 #5
0
파일: UserRest.php 프로젝트: adri229/wallas
 public function __construct()
 {
     parent::__construct();
     $this->userDAO = new \UserDAO();
 }
예제 #6
0
파일: PostRest.php 프로젝트: xrlopez/TSW
 public function __construct()
 {
     parent::__construct();
     $this->postMapper = new PostMapper();
     $this->commentMapper = new CommentMapper();
 }
예제 #7
0
파일: UserRest.php 프로젝트: xrlopez/TSW
 public function __construct()
 {
     parent::__construct();
     $this->userMapper = new UserMapper();
 }