14 lines
445 B
C#
14 lines
445 B
C#
using System.Collections.Generic;
|
|
using CandyHouseBase.DataModels;
|
|
|
|
namespace CandyHouseBase.Interfaces.BusinessLogicsContracts
|
|
{
|
|
public interface IProductBusinessLogicContact
|
|
{
|
|
List<ProductDataModel> GetAllProducts();
|
|
ProductDataModel GetProductByData(string data);
|
|
void InsertProduct(ProductDataModel product);
|
|
void UpdateProduct(ProductDataModel product);
|
|
void DeleteProduct(string id);
|
|
}
|
|
} |