16 lines
506 B
C#
16 lines
506 B
C#
|
using UniversityContracts.BindingModels;
|
|||
|
using UniversityContracts.SearchModels;
|
|||
|
using UniversityContracts.ViewModels;
|
|||
|
|
|||
|
namespace UniversityContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ITeacherLogic
|
|||
|
{
|
|||
|
List<TeacherViewModel>? ReadList(TeacherSearchModel? model);
|
|||
|
TeacherViewModel? ReadElement(TeacherSearchModel model);
|
|||
|
bool Create(TeacherBindingModel model);
|
|||
|
bool Update(TeacherBindingModel model);
|
|||
|
bool Delete(TeacherBindingModel model);
|
|||
|
}
|
|||
|
}
|