SUBD_Aleikin/Restaurant/RestaurantContracts/BusinessLogicsContracts/IProviderLogic.cs
Артём Алейкин e52b239c08 BusinessLogic,
Contracts,
DataModels,
View(пока пусто)
2023-05-02 22:51:41 +04:00

25 lines
634 B
C#

using RestaurantContracts.BindingModels;
using RestaurantContracts.SearchModels;
using RestaurantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RestaurantContracts.BusinessLogicsContracts
{
public interface IProviderLogic
{
List<ProviderViewModel>? ReadList(ProviderSearchModel? model);
ProviderViewModel? ReadElement(ProviderSearchModel model);
bool Create(ProviderBindingModel model);
bool Update(ProviderBindingModel model);
bool Delete(ProviderBindingModel model);
}
}