Files
juipnet/Services/Hncore.Pass.Vpn/Service/ProductPriceSchemeService.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

16 lines
498 B
C#

using Hncore.Infrastructure.Service;
using Hncore.Pass.Vpn.Domain;
using Microsoft.AspNetCore.Http;
namespace Hncore.Pass.Vpn.Service
{
public partial class ProductPriceSchemeService : ServiceBase<ProductPriceSchemeEntity>, IFindService
{
CourseContext m_DbContext;
public ProductPriceSchemeService(CourseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
m_DbContext = dbContext;
}
}
}