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

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);
}
}