PIbd-21_Raspaev_N.I._FoodOr.../FoodOrders/FoodOrdersContracts/BuisnessLogicsContracts/IComponentLogic.cs
2023-03-11 19:13:24 +04:00

18 lines
849 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using FoodOrdersContracts.BindingModels;
using FoodOrdersContracts.SearchModels;
using FoodOrdersContracts.ViewModels;
namespace FoodOrdersContracts.BusinessLogicsContracts
{
public interface IComponentLogic
{
//чтение листа, если модель есть то с фильтром, если модели нет то весь
// знак вопроса так как модет вернуть null, а в качестве параметра, так как модель может не передаваться
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
ComponentViewModel? ReadElement(ComponentSearchModel model);
bool Create(ComponentBindingModel model);
bool Update(ComponentBindingModel model);
bool Delete(ComponentBindingModel model);
}
}