2023-01-05 15:32:21 +00:00
|
|
|
|
namespace BinaryDad.Notes.Services
|
|
|
|
|
{
|
|
|
|
|
public interface INoteService
|
|
|
|
|
{
|
2023-05-12 16:13:35 +00:00
|
|
|
|
ICollection<string> GetNoteNames();
|
2023-05-18 01:44:41 +00:00
|
|
|
|
string GetText(string noteName);
|
|
|
|
|
void SaveText(string content, string noteName);
|
2023-05-12 16:47:54 +00:00
|
|
|
|
void DeleteNote(string noteName);
|
2023-01-05 15:32:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|