using StudentPerformanceContracts.BindingModels; using StudentPerformanceContracts.SearchModels; using StudentPerformanceContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StudentPerformanceContracts.BusinessLogicContracts { public interface IFormatLogic { List? ReadList(FormatSearchModel? model); FormatViewModel? ReadElement(FormatSearchModel model); bool Create(FormatBindingModel model); bool Update(FormatBindingModel model); bool Delete(FormatBindingModel model); } }