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

16 lines
510 B
C#

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