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.
23 lines
542 B
23 lines
542 B
using BookStore.Services; |
|
using Microsoft.AspNetCore.Mvc; |
|
using System.Threading.Tasks; |
|
using Volo.Abp.AspNetCore.Mvc; |
|
|
|
namespace BookStore.Controllers; |
|
|
|
[Route("api/limit-validation")] |
|
public class LimitValidationController : AbpControllerBase, ILimitValidationAppService |
|
{ |
|
private readonly ILimitValidationAppService _service; |
|
|
|
public LimitValidationController(ILimitValidationAppService service) |
|
{ |
|
_service = service; |
|
} |
|
|
|
[HttpGet] |
|
public Task GetAsync() |
|
{ |
|
return _service.GetAsync(); |
|
} |
|
}
|
|
|