Created and implemented StockDal.InterFace

This commit is contained in:
2021-01-09 17:28:21 +01:00
parent e8780176e5
commit 4c069298f2
7 changed files with 24 additions and 6 deletions

View File

@ -0,0 +1,14 @@
using StockDomain;
using System;
using System.Collections.Generic;
namespace StockDal.Interface
{
public interface IProductRepository
{
IEnumerable<Product> GetProducts();
bool Insert(Product product);
bool Update(Product product);
bool Delete(string productId);
}
}