PIbd-22_Kozlova_A.A_Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/BusinessLogicsContracts/IClientLogic.cs

25 lines
658 B
C#
Raw Permalink Normal View History

2024-04-07 22:12:50 +04:00
using PrecastConcretePlantContracts.BindingModels;
using PrecastConcretePlantContracts.SearchModels;
using PrecastConcretePlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
{
public interface IClientLogic
{
List<ClientViewModel>? ReadList(ClientSearchModel? model);
ClientViewModel? ReadElement(ClientSearchModel model);
bool Create(ClientBindingModel model);
bool Update(ClientBindingModel model);
bool Delete(ClientBindingModel model);
}
}