View difference between Paste ID: 0WUxRPkc and 0xjW5tFG
SHOW: | | - or go back to the newest paste.
1-
abstract class BasePresenter extends Nette\Application\UI\Presenter
1+
class SuppliersPresenter extends BasePresenter
2
{
3
	private $suppliers;
4
5-
	public function __construct() {
5+
	public function __construct(Suppliers $suppliers) 
6
	{
7-
		$this->suppliers = new Suppliers;
7+
8
		$this->suppliers = $suppliers;
9
	}
10
}