2024-02-16 17:16:54 +08:00
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
using Volo.Abp.Domain.Repositories;
|
2024-02-16 21:06:34 +08:00
|
|
|
|
using Yi.Framework.CodeGen.Application.Contracts.Dtos.Table;
|
|
|
|
|
|
using Yi.Framework.CodeGen.Application.Contracts.IServices;
|
|
|
|
|
|
using Yi.Framework.CodeGen.Domain.Entities;
|
2024-02-16 15:40:13 +08:00
|
|
|
|
using Yi.Framework.Ddd.Application;
|
|
|
|
|
|
|
2024-02-16 21:06:34 +08:00
|
|
|
|
namespace Yi.Framework.CodeGen.Application.Services
|
2024-02-16 15:40:13 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class TableService : YiCrudAppService<TableAggregateRoot, TableDto, Guid, TableGetListInput>, ITableService
|
|
|
|
|
|
{
|
|
|
|
|
|
public TableService(IRepository<TableAggregateRoot, Guid> repository) : base(repository)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2024-02-16 17:16:54 +08:00
|
|
|
|
|
|
|
|
|
|
public override Task<PagedResultDto<TableDto>> GetListAsync(TableGetListInput input)
|
|
|
|
|
|
{
|
|
|
|
|
|
return base.GetListAsync(input);
|
|
|
|
|
|
}
|
2024-02-16 15:40:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|