using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TypographyContracts.BindingModels; using TypographyContracts.ViewModels; using TypographyContracts.SearchModels; namespace TypographyContracts.BusinessLogicsContracts { public interface IClientLogic { List? ReadList(ClientSearchModel? model); ClientViewModel? ReadElement(ClientSearchModel model); bool Create(ClientBindingModel model); bool Update(ClientBindingModel model); bool Delete(ClientBindingModel model); } }