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