using BlogApplication.DTO; using System.Collections.Generic; using System.Threading.Tasks; namespace BlogApplication.Service { public interface IBlogService { Task SaveBlog(BlogDTO blog); Task> GetBlogList(); Task> GetBlogListByAuthor(string authorId); Task GetBlogById(string id); Task Delete(string id); } }