PIbd-21_Bakalskaya_E.D._Sus.../SushiBarContracts/BusinessLogicsContracts/IMessageInfoLogic.cs

15 lines
356 B
C#
Raw Normal View History

2024-05-04 18:49:24 +04:00
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);
}
}