Upload files to 'STOContracts/BusinessLogicContracts'

This commit is contained in:
Ivan_Starostin 2024-05-01 14:27:46 +04:00
parent baef76384e
commit 06b33087b7

View File

@ -0,0 +1,15 @@
using STOContracts.BindingModels;
using STOContracts.SearchModels;
using STOContracts.ViewModels;
namespace STOContracts.BusinessLogicContracts
{
public interface IWorkLogic
{
List<WorkViewModel>? ReadList(WorkSearchModel? model);
WorkViewModel? ReadElement(WorkSearchModel model);
bool Create(WorkBindingModel model);
bool Update(WorkBindingModel model);
bool Delete(WorkBindingModel model);
}
}