20 lines
562 B
C#
20 lines
562 B
C#
using AutomobilePlantContracts.BindingModels;
|
|
using AutomobilePlantContracts.SearchModels;
|
|
using AutomobilePlantContracts.ViewModels;
|
|
|
|
namespace AutomobilePlantContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IImplementerLogic
|
|
{
|
|
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
|
|
|
|
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
|
|
|
|
bool Create(ImplementerBindingModel model);
|
|
|
|
bool Update(ImplementerBindingModel model);
|
|
|
|
bool Delete(ImplementerBindingModel model);
|
|
}
|
|
}
|