SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomContracts/BusinessLogic/IMakeLogic.cs

21 lines
533 B
C#
Raw Normal View History

2024-05-05 23:59:47 +04:00
using CarShowroomDataModels.Dtos;
2024-05-05 22:02:53 +04:00
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);
}
}