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

21 lines
557 B
C#
Raw Normal View History

2024-05-05 22:02:53 +04:00
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;
2024-05-06 11:31:59 +04:00
namespace CarShowroomContracts.BusinessLogic
2024-05-05 22:02:53 +04:00
{
public interface IServiceLogic
{
List<ServiceView>? ReadList(ServiceSearch? model);
ServiceView? ReadElement(ServiceSearch model);
bool Create(ServiceDto model);
bool Update(ServiceDto model);
bool Delete(ServiceDto model);
}
}