mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Http.Client;
|
|
using Volo.Abp.Http.Modeling;
|
|
using Volo.Docs.Admin.Projects;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Volo.Docs.Admin.ClientProxies
|
|
{
|
|
public partial class ProjectsAdminClientProxy
|
|
{
|
|
public virtual async Task<PagedResultDto<ProjectDto>> GetListAsync(PagedAndSortedResultRequestDto input)
|
|
{
|
|
return await RequestAsync<PagedResultDto<ProjectDto>>(nameof(GetListAsync), input);
|
|
}
|
|
|
|
public virtual async Task<ProjectDto> GetAsync(Guid id)
|
|
{
|
|
return await RequestAsync<ProjectDto>(nameof(GetAsync), id);
|
|
}
|
|
|
|
public virtual async Task<ProjectDto> CreateAsync(CreateProjectDto input)
|
|
{
|
|
return await RequestAsync<ProjectDto>(nameof(CreateAsync), input);
|
|
}
|
|
|
|
public virtual async Task<ProjectDto> UpdateAsync(Guid id, UpdateProjectDto input)
|
|
{
|
|
return await RequestAsync<ProjectDto>(nameof(UpdateAsync), id, input);
|
|
}
|
|
|
|
public virtual async Task DeleteAsync(Guid id)
|
|
{
|
|
await RequestAsync(nameof(DeleteAsync), id);
|
|
}
|
|
|
|
public virtual async Task ReindexAllAsync()
|
|
{
|
|
await RequestAsync(nameof(ReindexAllAsync));
|
|
}
|
|
|
|
public virtual async Task ReindexAsync(ReindexInput input)
|
|
{
|
|
await RequestAsync(nameof(ReindexAsync), input);
|
|
}
|
|
|
|
}
|
|
}
|
|
|