<?php

namespace App\Interfaces;

interface PageRepositoryInterface
{
    public function getAll();

    public function getByID($uuid);

    public function delete($uuid);

    public function create(array $page);

    public function update($uuid, array $page);

    public function getGroup($num, $limit, $filter);
}