using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Volo.Abp; namespace JiShe.CollectBus.Samples; [Area(CollectBusRemoteServiceConsts.ModuleName)] [RemoteService(Name = CollectBusRemoteServiceConsts.RemoteServiceName)] [Route("api/CollectBus/sample")] public class SampleController : CollectBusController, ISampleAppService { private readonly ISampleAppService _sampleAppService; public SampleController(ISampleAppService sampleAppService) { _sampleAppService = sampleAppService; } [HttpGet] public async Task GetAsync() { return await _sampleAppService.GetAsync(); } [HttpGet] [Route("authorized")] [Authorize] public async Task GetAuthorizedAsync() { return await _sampleAppService.GetAsync(); } }