using System.Collections.Generic; using CandyHouseBase.DataModels; namespace CandyHouseBase.Interfaces.BusinessLogicsContracts { public interface IProductBusinessLogicContact { List GetAllProducts(); ProductDataModel GetProductByData(string data); void InsertProduct(ProductDataModel product); void UpdateProduct(ProductDataModel product); void DeleteProduct(string id); } }