2024-05-02 22:08:35 +04:00
|
|
|
|
using PlumbingRepairContracts.BindingModels;
|
|
|
|
|
using PlumbingRepairContracts.SearchModels;
|
|
|
|
|
using PlumbingRepairContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IMessageInfoLogic
|
|
|
|
|
{
|
|
|
|
|
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
|
|
|
|
|
bool Create(MessageInfoBindingModel model);
|
2024-05-15 19:54:27 +04:00
|
|
|
|
MessageInfoViewModel? ReadElement(MessageInfoSearchModel? model);
|
|
|
|
|
bool Update(MessageInfoBindingModel model);
|
|
|
|
|
}
|
2024-05-02 22:08:35 +04:00
|
|
|
|
}
|