Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreBusinessLogic/BusinessLogics/JewelLogic.cs

41 lines
1.1 KiB
C#
Raw Normal View History

2023-02-05 19:24:53 +04:00
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
{
internal 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<JewelViewModel>? ReadList(JewelSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(JewelBindingModel model)
{
throw new NotImplementedException();
}
}
}