13 lines
352 B
C#
13 lines
352 B
C#
using CarRepairShopContracts.BindingModels;
|
|
using CarRepairShopContracts.SearchModels;
|
|
using CarRepairShopContracts.ViewModels;
|
|
|
|
namespace CarRepairShopContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IMessageInfoLogic
|
|
{
|
|
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
|
|
bool Create(MessageInfoBindingModel model);
|
|
}
|
|
}
|