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