using StudentEnrollmentContracts.BindingModels; using StudentEnrollmentContracts.SearchModels; using StudentEnrollmentContracts.ViewModels; namespace StudentEnrollmentContracts.BusinessLogicContracts { public interface IFacultyLogic { List? ReadList(FacultySearchModel? model); FacultyViewModel? ReadElement(FacultySearchModel model); bool Create(FacultyBindingModel model); bool Update(FacultyBindingModel model); bool Delete(FacultyBindingModel model); } }