using WIDESEA_Core.BaseServices;
|
using WIDESEA_IBasicRepository;
|
using WIDESEA_IBasicService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_BasicService
|
{
|
public class ApiInfoService : ServiceBase<Dt_ApiInfo, IApiInfoRepository>, IApiInfoService
|
{
|
public ApiInfoService(IApiInfoRepository BaseDal) : base(BaseDal)
|
{
|
}
|
|
public IApiInfoRepository Repository => BaseDal;
|
}
|
}
|