极客正式套餐开通tx

This commit is contained in:
“wanyongkang”
2024-04-17 15:04:57 +08:00
parent 9836808b83
commit 0f2b2e803d
5 changed files with 61 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
using Hncore.Infrastructure.Service;
using Hncore.Pass.Vpn.Domain;
using Microsoft.AspNetCore.Http;
namespace Hncore.Pass.Vpn.Service
{
public partial class AgreementService : ServiceBase<AgreementEntity>, IFindService
{
CourseContext m_DbContext;
public AgreementService(CourseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
m_DbContext = dbContext;
}
}
}