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