13 lines
337 B
C#
13 lines
337 B
C#
using APT.BaseData.Domain.IServices.BD;
|
|
using APT.Infrastructure.Core;
|
|
using APT.Infrastructure.Api;
|
|
namespace APT.BaseData.Services.Services.BD
|
|
{
|
|
public class BDSystemInfoService : CommonService, IBDSystemInfoService
|
|
{
|
|
public BDSystemInfoService(IRepository repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|