<?php

namespace Photo\Photo;

class Photo
{
    /**
     * $product object.
     */
    protected $product;    /**
     * $product_item object.
     */
    protected $product_item;    /**
     * $orders object.
     */
    protected $orders;    /**
     * $order_item object.
     */
    protected $order_item;

    /**
     * Constructor.
     */
    public function __construct(\Photo\Photo\Interfaces\ProductRepositoryInterface $product,        \Photo\Photo\Interfaces\ProductItemRepositoryInterface $product_item,        \Photo\Photo\Interfaces\OrdersRepositoryInterface $orders,        \Photo\Photo\Interfaces\OrderItemRepositoryInterface $order_item)
    {
        $this->product = $product;        $this->product_item = $product_item;        $this->orders = $orders;        $this->order_item = $order_item;
    }

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