<?php

namespace App\Service;

use App\Entity\FileAssociationComment;

interface FileAssociationCommentTaskRepositoryInterface
{
    /**
     * @param int $id
     *
     * @return FileAssociationComment
     */
    public function findById(int $id): ?FileAssociationComment;

    /**
     * @param FileAssociationComment $fileAssociationCommentTask
     */
    public function save(FileAssociationComment $fileAssociationCommentTask): void;

    /**
     * @param FileAssociationComment $fileAssociationCommentTask
     */
    public function delete(FileAssociationComment $fileAssociationCommentTask): void;
}
