Interface IBlogAppService
Assembly: Volo.Blogging.Application.Contracts.dll
Syntax
public interface IBlogAppService : IApplicationService
Methods
GetAsync(Guid)
Declaration
Task<BlogDto> GetAsync(Guid id)
Parameters
| Type |
Name |
Description |
| Guid |
id |
|
Returns
GetByShortNameAsync(String)
Declaration
Task<BlogDto> GetByShortNameAsync(string shortName)
Parameters
| Type |
Name |
Description |
| System.String |
shortName |
|
Returns
GetListAsync()
Declaration
Task<ListResultDto<BlogDto>> GetListAsync()
Returns
| Type |
Description |
| Task<ListResultDto<BlogDto>> |
|
Extension Methods