2023-04-11 15:29:05 +04:00
|
|
|
|
using IceCreamShopContracts.BindingModels;
|
|
|
|
|
using IceCreamShopContracts.SearchModels;
|
|
|
|
|
using IceCreamShopContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace IceCreamShopContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IMessageInfoLogic
|
|
|
|
|
{
|
|
|
|
|
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
|
|
|
|
|
|
|
|
|
|
bool Create(MessageInfoBindingModel model);
|
2023-05-03 14:05:03 +04:00
|
|
|
|
|
|
|
|
|
bool Update(MessageInfoBindingModel model);
|
|
|
|
|
|
|
|
|
|
MessageInfoViewModel? ReadElement(MessageInfoSearchModel model);
|
|
|
|
|
}
|
2023-04-11 15:29:05 +04:00
|
|
|
|
}
|