SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomContracts/BusinessLogic/IClientLogic.cs
2024-05-05 22:02:53 +04:00

21 lines
549 B
C#

using CarShowroomDataModels.Dtos;
using CarShowroomDataModels.SearchModel;
using CarShowroomDataModels.Views;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarShowroomContracts.BusinessLogic
{
public interface IClientLogic
{
List<ClientView>? ReadList(ClientSearch? model);
ClientView? ReadElement(ClientSearch model);
bool Create(ClientDto model);
bool Update(ClientDto model);
bool Delete(ClientDto model);
}
}