From b009b4f0beed2234ee30c4a028f6835c12cf783e Mon Sep 17 00:00:00 2001 From: duho wise Date: Sat, 24 Aug 2024 11:08:26 +0000 Subject: [PATCH] namespace change --- SampleLibrary/IProductRepository.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SampleLibrary/IProductRepository.cs b/SampleLibrary/IProductRepository.cs index 49394a6..6866312 100644 --- a/SampleLibrary/IProductRepository.cs +++ b/SampleLibrary/IProductRepository.cs @@ -1,3 +1,5 @@ +namespace SampleLibrary; + public interface IProductRepository { Task> GetAllAsync(); @@ -5,4 +7,4 @@ public interface IProductRepository Task AddAsync(Product product); Task UpdateAsync(Product product); Task DeleteAsync(int id); -} +} \ No newline at end of file