22 lines
551 B
C#
22 lines
551 B
C#
|
|
using DataContracts.bindingModels;
|
|
using DataContracts.searchModels;
|
|
using DataContracts.viewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataContracts.BLs
|
|
{
|
|
public interface IProductBL
|
|
{
|
|
List<ProductViewModel>? ReadList();
|
|
ProductViewModel? ReadElement(ProductSearchModel model);
|
|
bool Create(ProductBindingModel model);
|
|
bool Update(ProductBindingModel model);
|
|
bool Delete(ProductBindingModel model);
|
|
}
|
|
}
|