25 lines
716 B
C#
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);
|
|
}
|
|
} |