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