CourseWork_Factory/FactoryView/FactoryContracts/BusinessLogicsContracts/ILatheBusyLogic.cs

16 lines
510 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 ILatheBusyLogic
{
List<LatheBusyViewModel>? ReadList(LatheBusySearchModel? model);
LatheBusyViewModel? ReadElement(LatheBusySearchModel model);
bool Create(LatheBusyBindingModel model);
bool Update(LatheBusyBindingModel model);
bool Delete(LatheBusyBindingModel model);
}
}