21 lines
593 B
C#
21 lines
593 B
C#
|
using SecuritySystemContracts.BindingModels;
|
|||
|
using SecuritySystemContracts.BusinessLogicsContracts;
|
|||
|
using SecuritySystemContracts.SearchModels;
|
|||
|
using SecuritySystemContracts.ViewModels;
|
|||
|
|
|||
|
namespace SecuritySystemBusinessLogic.BusinessLogics
|
|||
|
{
|
|||
|
public class MessageInfoLogic : IMessageInfoLogic
|
|||
|
{
|
|||
|
public bool Create(MessageInfoBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|