Notes/Services/INoteService.cs

11 lines
271 B
C#
Raw Normal View History

2023-01-05 10:32:21 -05:00
namespace BinaryDad.Notes.Services
{
public interface INoteService
{
ICollection<string> GetNoteNames();
2023-05-17 21:44:41 -04:00
string GetText(string noteName);
void SaveText(string content, string noteName);
2023-05-12 12:47:54 -04:00
void DeleteNote(string noteName);
2023-01-05 10:32:21 -05:00
}
}