mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
21 lines
708 B
C#
21 lines
708 B
C#
|
|
namespace Data.Models.Interfaces;
|
|||
|
|
|
|||
|
|
public interface IBlogApi
|
|||
|
|
{
|
|||
|
|
Task<int> GetBlogPostCountAsync();
|
|||
|
|
Task<List<BlogPost>?> GetBlogPostsAsync(int numberofposts, int startindex);
|
|||
|
|
Task<List<Category>?> GetCategoriesAsync();
|
|||
|
|
Task<List<Tag>?> GetTagsAsync();
|
|||
|
|
Task<BlogPost?> GetBlogPostAsync(string id);
|
|||
|
|
Task<Category?> GetCategoryAsync(string id);
|
|||
|
|
Task<Tag?> GetTagAsync(string id);
|
|||
|
|
Task<BlogPost?> SaveBlogPostAsync(BlogPost item);
|
|||
|
|
Task<Category?> SaveCategoryAsync(Category item);
|
|||
|
|
Task<Tag?> SaveTagAsync(Tag item);
|
|||
|
|
Task DeleteBlogPostAsync(string id);
|
|||
|
|
Task DeleteCategoryAsync(string id);
|
|||
|
|
Task DeleteTagAsync(string id);
|
|||
|
|
Task InvalidateCacheAsync();
|
|||
|
|
|
|||
|
|
}
|