portal.mkgtu.ru/common/components/ApplicationSendHandler/interfaces/IApplicationSendHandler.php

17 lines
396 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\ApplicationSendHandler\interfaces;
use common\modules\abiturient\models\bachelor\BachelorApplication;
interface IApplicationSendHandler
{
public function getApplication(): BachelorApplication;
public function setApplication(BachelorApplication $application);
public function send(): bool;
public function updateDataAfterSuccessSending();
}