PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryContracts/BusinessLogicsContracts/IImplementerLogic.cs

21 lines
666 B
C#
Raw Normal View History

2024-05-04 15:51:52 +04:00
using ConfectioneryContracts.BindingModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-04 23:59:55 +04:00
using ConfectioneryContracts.SearchModels;
using ConfectioneryContracts.ViewModels;
2024-05-04 15:51:52 +04:00
namespace ConfectioneryContracts.BusinessLogicsContracts
{
public interface IImplementerLogic
{
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
bool Create(ImplementerBindingModel model);
bool Update(ImplementerBindingModel model);
bool Delete(ImplementerBindingModel model);
}
}