PIbd-21_Barsukov_P.O._Compu.../ComputersShop/ComputersShopContracts/BusinessLogicsContracts/IClientLogic.cs

21 lines
626 B
C#
Raw Normal View History

using ComputersShopContracts.ViewModels;
using ComputersShopContracts.BindingModels;
using ComputersShopContracts.SearchModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.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);
}
}