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

22 lines
574 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;
using CarShowroomDataModels.Dtos;
namespace CarShowroomContracts.BusinessLogic
{
public interface IModelLogic
{
List<ModelView>? ReadList(ModelSearch? model);
ModelView? ReadElement(ModelSearch model);
bool Create(ModelDto model);
bool Update(ModelDto model);
bool Delete(ModelDto model);
}
}