16 lines
497 B
C#
16 lines
497 B
C#
|
|
using Hncore.Infrastructure.Service;
|
|||
|
|
using Hncore.Pass.Sells.Domain;
|
|||
|
|
using Microsoft.AspNetCore.Http;
|
|||
|
|
|
|||
|
|
namespace Hncore.Pass.Sells.Service
|
|||
|
|
{
|
|||
|
|
public class CouponResourceService : ServiceBase<CouponResourceEntity>, IFindService
|
|||
|
|
{
|
|||
|
|
CourseContext m_DbContext;
|
|||
|
|
public CouponResourceService(CourseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
|
|||
|
|
{
|
|||
|
|
m_DbContext = dbContext;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|