using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace newtelligence.DasBlog.Web.Core{ public interface IProfileDataService { string LoadProfileContent(string username); void SaveProfileContent(string username, string content); } }