PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyContracts/BusinessLogicsContracts/IImplementerLogic.cs

26 lines
751 B
C#
Raw Normal View History

2024-06-21 14:50:51 +04:00
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 IImplementerLogic
2024-06-21 16:28:36 +04:00
{
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
2024-06-21 14:50:51 +04:00
2024-06-21 16:28:36 +04:00
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
2024-06-21 14:50:51 +04:00
2024-06-21 16:28:36 +04:00
bool Create(ImplementerBindingModel model);
2024-06-21 14:50:51 +04:00
2024-06-21 16:28:36 +04:00
bool Update(ImplementerBindingModel model);
2024-06-21 14:50:51 +04:00
2024-06-21 16:28:36 +04:00
bool Delete(ImplementerBindingModel model);
}
2024-06-21 14:50:51 +04:00
}