CourseWork_Factory/FactoryView/FactoryContracts/BusinessLogicsContracts/ILatheLogic.cs

16 lines
478 B
C#
Raw Normal View History

2023-04-08 18:12:08 +04:00
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);
}
}