示例#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
 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();
 }