21 lines
549 B
C#
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);
|
|
}
|
|
}
|