41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|