namespace BinaryDad.Notes.Services { public interface INoteService { ICollection GetNoteNames(); string GetNote(string noteName); void SaveNote(string content, string noteName); void DeleteNote(string noteName); } }