platoff aeeee 2cefd91025 12
2024-05-24 13:05:47 +04:00

25 lines
716 B
C#

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<KommentViewModel>? ReadList(KommentSearchModel? model);
KommentViewModel? ReadElement(KommentSearchModel model);
bool Create(KommentBindingModel model);
bool Update(KommentBindingModel model);
bool Delete(KommentBindingModel model);
}
}