16 lines
494 B
C#
16 lines
494 B
C#
using EkzamenContracts.BindingModels;
|
|
using EkzamenContracts.SearchModels;
|
|
using EkzamenContracts.ViewModels;
|
|
|
|
namespace EkzamenContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IStudentLogic
|
|
{
|
|
List<StudentViewModel>? ReadList(StudentSearchModel? model);
|
|
StudentViewModel? ReadElement(StudentSearchModel model);
|
|
bool Create(StudentBindingModel model);
|
|
bool Update(StudentBindingModel model);
|
|
bool Delete(StudentBindingModel model);
|
|
}
|
|
}
|