<?php

namespace Cushbu\Artwork;

class Artwork
{
    /**
     * $artwork object.
     */
    protected $artwork;

    /**
     * Constructor.
     */
    public function __construct(\Cushbu\Artwork\Interfaces\ArtworkRepositoryInterface $artwork)
    {
        $this->artwork = $artwork;
    }

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