2023-01-05 10:32:21 -05:00
|
|
|
|
namespace BinaryDad.Notes.Services
|
|
|
|
|
{
|
|
|
|
|
public interface INoteService
|
|
|
|
|
{
|
2023-05-12 12:13:35 -04:00
|
|
|
|
ICollection<string> GetNoteNames();
|
2024-05-07 21:43:09 -04:00
|
|
|
|
string GetNote(string noteName);
|
2025-01-09 11:41:18 -05:00
|
|
|
|
void SaveNote(string noteName, string content);
|
2023-05-12 12:47:54 -04:00
|
|
|
|
void DeleteNote(string noteName);
|
2023-01-05 10:32:21 -05:00
|
|
|
|
}
|
|
|
|
|
}
|