ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IMessageInfoLogic.cs

18 lines
448 B
C#
Raw Permalink Normal View History

2024-05-13 13:16:59 +04:00
using SushiBarContracts.BindingModels;
using SushiBarContracts.SearchModels;
using SushiBarContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IMessageInfoLogic
{
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
bool Create(MessageInfoBindingModel model);
}
}