<?php

namespace App\Interfaces;

interface PageRepositoryInterface
{
    public function getAll();

    public function getByID($uuid);

    public function delete($uuid);

    public function create($page);

    public function update($page);

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