using JewelryStoreContracts.BindingModels; using JewelryStoreContracts.BusinessLogicsContracts; using JewelryStoreContracts.SearchModels; using JewelryStoreContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JewelryStoreBusinessLogic.BusinessLogics { public class JewelLogic : IJewelLogic // TODO реализовать интерфейс идентично componentLogic { public bool Create(JewelBindingModel model) { throw new NotImplementedException(); } public bool Delete(JewelBindingModel model) { throw new NotImplementedException(); } public JewelViewModel? ReadElement(JewelSearchModel model) { throw new NotImplementedException(); } public List? ReadList(JewelSearchModel? model) { throw new NotImplementedException(); } public bool Update(JewelBindingModel model) { throw new NotImplementedException(); } } }