using SchoolContracts.BindingModel; using SchoolContracts.SearchModel; using SchoolContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.BusinessLogicsContracts { public interface ILessonLogic { List? ReadList(LessonSearchModel? model); LessonViewModel? ReadElement(LessonSearchModel model); bool Create(LessonBindingModel model); bool Update(LessonBindingModel model); bool Delete(LessonBindingModel model); } }