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