We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50905a commit 63ec3abCopy full SHA for 63ec3ab
src/Core/Domain/Services/ICategoryRepository.cs
@@ -7,7 +7,8 @@ namespace CompanyName.Notebook.NoteTaking.Core.Domain.Services
7
public interface ICategoryRepository
8
{
9
ICategory Get(Guid id);
10
- IList<ICategory> Get(string userId);
+ ICategory GetByName(string name);
11
+ IList<ICategory> GetAll();
12
ICategory Add<ICategory>(ICategory category);
13
ICategory Save<ICategory>(ICategory category);
14
ICategory Delete(Guid id);
0 commit comments