Skip to content

Commit

Permalink
namespace change
Browse files Browse the repository at this point in the history
  • Loading branch information
duho wise committed Aug 24, 2024
1 parent ce3a53e commit b009b4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SampleLibrary/IProductRepository.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
namespace SampleLibrary;

public interface IProductRepository
{
Task<IEnumerable<Product>> GetAllAsync();
Task<Product> GetByIdAsync(int id);
Task AddAsync(Product product);
Task UpdateAsync(Product product);
Task DeleteAsync(int id);
}
}

0 comments on commit b009b4f

Please sign in to comment.