<?php

namespace Fegerer\AppTest;

class AppTest
{
    /**
     * $action object.
     */
    protected $action;    /**
     * $actiontypecategory object.
     */
    protected $actiontypecategory;    /**
     * $actiontype object.
     */
    protected $actiontype;

    /**
     * Constructor.
     */
    public function __construct(\Fegerer\AppTest\Interfaces\ActionRepositoryInterface $action,        \Fegerer\AppTest\Interfaces\ActiontypecategoryRepositoryInterface $actiontypecategory,        \Fegerer\AppTest\Interfaces\ActiontypeRepositoryInterface $actiontype)
    {
        $this->action = $action;        $this->actiontypecategory = $actiontypecategory;        $this->actiontype = $actiontype;
    }

    /**
     * Returns count of app_test.
     *
     * @param array $filter
     *
     * @return int
     */
    public function count()
    {
        return  0;
    }
}