public function __construct()
{
$this->layout = new View('/layouts/single');
$this->model = new Models\Catalog;
$this->widgets = new Widgets;
}
public function __construct(ViewInterface $View, CatalogInterface $Catalog,WidgetsInterface $Widgets)
{
$this->layout = $View;
$this->model = $Catalog;
$this->widgets = $Widgets;
}