PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IMessageInfoLogic.cs

18 lines
489 B
C#
Raw Normal View History

2023-05-04 21:14:24 +04:00
using ConfectioneryContracts.BindingModels;
using ConfectioneryContracts.SearchModels;
using ConfectioneryContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.BusinessLogicsContracts
{
public interface IMessageInfoLogic
{
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
bool Create(MessageInfoBindingModel model);
}
}