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

21 lines
532 B
C#

using CarShowroomContracts.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);
}
}