Files
Yi.Framework/Yi.Abp.Net8/module/code-gun/Yi.Framework.CodeGun.Application/Services/TableService.cs
2024-02-16 15:40:13 +08:00

16 lines
545 B
C#

using Volo.Abp.Domain.Repositories;
using Yi.Framework.CodeGun.Application.Contracts.Dtos.Table;
using Yi.Framework.CodeGun.Application.Contracts.IServices;
using Yi.Framework.CodeGun.Domain.Entities;
using Yi.Framework.Ddd.Application;
namespace Yi.Framework.CodeGun.Application.Services
{
public class TableService : YiCrudAppService<TableAggregateRoot, TableDto, Guid, TableGetListInput>, ITableService
{
public TableService(IRepository<TableAggregateRoot, Guid> repository) : base(repository)
{
}
}
}