SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomContracts/BusinessLogic/IServiceLogic.cs
2024-05-06 11:31:59 +04:00

21 lines
557 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.BusinessLogic
{
public interface IServiceLogic
{
List<ServiceView>? ReadList(ServiceSearch? model);
ServiceView? ReadElement(ServiceSearch model);
bool Create(ServiceDto model);
bool Update(ServiceDto model);
bool Delete(ServiceDto model);
}
}