Coursach/Course/Contracts/BusinessLogicsContracts/IWorkshopLogic.cs
2024-04-27 12:35:20 +04:00

16 lines
439 B
C#

using Contracts.BindingModels;
using Contracts.SearchModels;
using Contracts.ViewModels;
namespace Contracts.BusinessLogicsContracts
{
public interface IWorkshopLogic
{
List<WorkshopViewModel>? ReadList(WorkshopSearchModel? model);
WorkshopViewModel? ReadElement(WorkshopSearchModel? model);
bool Create(WorkshopBindingModel? model);
bool Update(WorkshopBindingModel? model);
bool Delete(WorkshopBindingModel? model);
}
}