26 lines
712 B
C#
26 lines
712 B
C#
using ElectronicsShopContracts.BindingModels;
|
|
using ElectronicsShopContracts.BusinessLogicContracts;
|
|
using ElectronicsShopContracts.SearchModels;
|
|
using ElectronicsShopContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronicsShopBusinessLogic.BusinessLogic
|
|
{
|
|
public class MessageInfoLogic : IMessageInfoLogic
|
|
{
|
|
public bool Create(MessageInfoBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|