21 lines
533 B
C#
21 lines
533 B
C#
using CarShowroomDataModels.Dtos;
|
|
using CarShowroomDataModels.Views;
|
|
using CarShowroomDataModels.SearchModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarShowroomContracts.BusinessLogic
|
|
{
|
|
public interface IMakeLogic
|
|
{
|
|
List<MakeView>? ReadList(MakeSearch? model);
|
|
MakeView? ReadElement(MakeSearch model);
|
|
bool Create(MakeDto model);
|
|
bool Update(MakeDto model);
|
|
bool Delete(MakeDto model);
|
|
}
|
|
}
|