Add project files.

This commit is contained in:
2021-01-09 16:41:32 +01:00
parent 6cd1138b6b
commit 105fe382bb
11 changed files with 334 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RepositoryPattern
{
public interface IProductRepository
{
IEnumerable<Product> GetProducts();
bool Insert(Product product);
bool Update(Product product);
bool Delete(string productId);
}
}