using FurnitureAssemblyContracts.BindingModels; using FurnitureAssemblyContracts.SearchModels; using FurnitureAssemblyContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FurnitureAssemblyContracts.BusinessLogicsContracts { // Бизнес-логика для компонентов public interface IKommentLogic { List? ReadList(KommentSearchModel? model); KommentViewModel? ReadElement(KommentSearchModel model); bool Create(KommentBindingModel model); bool Update(KommentBindingModel model); bool Delete(KommentBindingModel model); } }