CourseWork_Factory/FactoryView/FactoryContracts/BusinessLogicsContracts/ILatheLogic.cs
2023-04-08 18:12:08 +04:00

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);
}
}