14 lines
487 B
C#
14 lines
487 B
C#
using PlumbingRepairContracts.BindingModels;
|
|
using PlumbingRepairContracts.SearchModels;
|
|
using PlumbingRepairContracts.ViewModels;
|
|
|
|
namespace PlumbingRepairContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IMessageInfoLogic
|
|
{
|
|
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
|
|
bool Create(MessageInfoBindingModel model);
|
|
MessageInfoViewModel? ReadElement(MessageInfoSearchModel? model);
|
|
bool Update(MessageInfoBindingModel model);
|
|
}
|
|
} |