ISEbd-22_CourseWork_School/School/SchoolContracts/BusinessLogicContracts/IExecutorLogic.cs

13 lines
328 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
using SchoolContracts.BindingModels;
using SchoolContracts.SearchModels;
using SchoolContracts.ViewModels;
namespace SchoolContracts.BusinessLogicContracts
{
public interface IExecutorLogic
{
ExecutorViewModel ReadElement(ExecutorSearchModel model);
bool Create(ExecutorrBindingModel model);
}
}