using SchoolContracts.BindingModels; using SchoolContracts.SearchModels; using SchoolContracts.ViewModels; namespace SchoolContracts.BusinessLogicContracts { public interface IStudentLogic { List ReadList(StudentSearchModel? model = null); StudentViewModel ReadElement(StudentSearchModel model); bool Create(StudentBindingModel model); bool Update(StudentBindingModel model); bool Delete(StudentBindingModel model); } }