16 lines
478 B
C#
16 lines
478 B
C#
|
using FactoryContracts.BindingModels;
|
|||
|
using FactoryContracts.SearchModels;
|
|||
|
using FactoryContracts.ViewModels;
|
|||
|
|
|||
|
namespace FactoryContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ILatheLogic
|
|||
|
{
|
|||
|
List<LatheViewModel>? ReadList(LatheSearchModel? model);
|
|||
|
LatheViewModel? ReadElement(LatheSearchModel model);
|
|||
|
bool Create(LatheBindingModel model);
|
|||
|
bool Update(LatheBindingModel model);
|
|||
|
bool Delete(LatheBindingModel model);
|
|||
|
}
|
|||
|
}
|