16 lines
476 B
C#
16 lines
476 B
C#
using Hncore.Infrastructure.Service;
|
|
using Hncore.Pass.PaymentCenter.Domain;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Hncore.Pass.PaymentCenter.Service
|
|
{
|
|
public class TenantService : ServiceBase<TenantEntity>, IFindService
|
|
{
|
|
PaymentContext m_DbContext;
|
|
public TenantService(PaymentContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
|
|
{
|
|
m_DbContext = dbContext;
|
|
}
|
|
}
|
|
}
|