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