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? ReadList(MessageInfoSearchModel? model) { throw new NotImplementedException(); } } }