PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopContracts/BusinessLogicsContracts/IClientLogic.cs
gg12 darfren 96d69b91a6 .
2024-04-01 20:04:44 +04:00

22 lines
623 B
C#

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