23 lines
584 B
C#
23 lines
584 B
C#
|
using JewelryStoreContracts.BindingModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace JewelryStoreContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IImplementerLogic
|
|||
|
{
|
|||
|
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
|
|||
|
|
|||
|
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
|
|||
|
|
|||
|
bool Create(ImplementerBindingModel model);
|
|||
|
|
|||
|
bool Update(ImplementerBindingModel model);
|
|||
|
|
|||
|
bool Delete(ImplementerBindingModel model);
|
|||
|
}
|
|||
|
}
|