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

16 lines
482 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;
}
}
}