21 lines
565 B
C#
21 lines
565 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 IEmployeeLogic
|
|
{
|
|
List<EmployeeView>? ReadList(EmployeeSearch? model);
|
|
EmployeeView? ReadElement(EmployeeSearch model);
|
|
bool Create(EmployeeDto model);
|
|
bool Update(EmployeeDto model);
|
|
bool Delete(EmployeeDto model);
|
|
}
|
|
}
|