-
Notifications
You must be signed in to change notification settings - Fork 0
voicenotesai.services.noteservice
github-actions[bot] edited this page Mar 4, 2026
·
1 revision
Namespace: VoiceNotesAI.Services
public class NoteService : VoiceNotesAI.Services.Interfaces.INoteServiceInheritance Object → NoteService
Implements INoteService
Attributes NullableContextAttribute, NullableAttribute
public NoteService(INoteRepository noteRepository, ICategoryRepository categoryRepository, IMapper mapper)noteRepository INoteRepository
categoryRepository ICategoryRepository
mapper IMapper
public Task<List<NoteInfo>> GetAllAsync()public Task<List<NoteInfo>> GetByCategoryAsync(string category)category String
public Task<NoteInfo> GetByIdAsync(int id)id Int32
public Task<NoteInfo> SaveAsync(NoteInfo noteInfo)noteInfo NoteInfo
public Task DeleteAsync(int id)id Int32
public Task<List<string>> GetAllCategoryNamesAsync()