using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ConfectioneryContracts.BindingModels; using ConfectioneryContracts.SearchModels; using ConfectioneryContracts.ViewModels; using ConfectioneryContracts.BusinessLogicsContracts; using ConfectioneryContracts.StoragesContracts; using Microsoft.Extensions.Logging; namespace ConfectioneryBusinessLogic.BusinessLogics { internal class PastryLogic : IPastryLogic { public bool Create(PastryBindingModel model) { throw new NotImplementedException(); } public bool Delete(PastryBindingModel model) { throw new NotImplementedException(); } public PastryViewModel? ReadElement(PastrySearchModel model) { throw new NotImplementedException(); } public List? ReadList(PastrySearchModel? model) { throw new NotImplementedException(); } public bool Update(PastryBindingModel model) { throw new NotImplementedException(); } } }