namespace BinaryDad.Notes.Services { public interface INoteService { string Get(); void Save(string content); } }