22 lines
619 B
C#
22 lines
619 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.StorageContracts
|
|||
|
{
|
|||
|
public interface IClientStorage
|
|||
|
{
|
|||
|
List<ClientView> GetFullList();
|
|||
|
List<ClientView> GetFilteredList(ClientSearch model);
|
|||
|
ClientView? GetElement(ClientSearch model);
|
|||
|
ClientView? Insert(ClientDto model);
|
|||
|
ClientView? Update(ClientDto model);
|
|||
|
ClientView? Delete(ClientDto model);
|
|||
|
}
|
|||
|
}
|