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