2023-04-01 20:05:57 +04:00
|
|
|
|
using JewelryStoreContracts.BindingModels;
|
2023-04-01 20:30:00 +04:00
|
|
|
|
using JewelryStoreContracts.SearchModels;
|
2023-04-01 20:05:57 +04:00
|
|
|
|
using JewelryStoreContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace JewelryStoreContracts.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);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|