15 lines
537 B
C#
15 lines
537 B
C#
|
using MotorPlantContracts.BindingModels;
|
|||
|
using MotorPlantContracts.SearchModels;
|
|||
|
using MotorPlantContracts.ViewModels;
|
|||
|
namespace MotorPlantContracts.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);
|
|||
|
}
|
|||
|
}
|