21 lines
603 B
C#
21 lines
603 B
C#
|
using SushiBarContracts.BindingModel;
|
|||
|
using SushiBarContracts.SearchModel;
|
|||
|
using SushiBarContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SushiBarContracts.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);
|
|||
|
}
|
|||
|
}
|