ISEbd-22_Nikolaeva_Y.A._Sof.../SoftwareInstallation/SofrwareInstallationContracts/BusinessLogicsContracts/IClientLogic.cs
2023-05-09 18:15:10 +04:00

17 lines
539 B
C#

using SofrwareInstallationContracts.BindingModels;
using SofrwareInstallationContracts.SearchModels;
using SofrwareInstallationContracts.ViewModels;
namespace SofrwareInstallationContracts.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);
}
}