using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TypographyContracts.BindingModels; using TypographyContracts.SearchModels; using TypographyContracts.ViewModels; namespace TypographyContracts.BusinessLogicsContracts { public interface IImplementerLogic { List? ReadList(ImplementerSearchModel? model); ImplementerViewModel? ReadElement(ImplementerSearchModel model); bool Create(ImplementerBindingModel model); bool Update(ImplementerBindingModel model); bool Delete(ImplementerBindingModel model); } }