22 lines
669 B
C#
22 lines
669 B
C#
using Hncore.Infrastructure.Service;
|
|
using Hncore.Pass.Sells.Domain;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using static Hncore.Pass.Sells.Domain.Enums;
|
|
|
|
namespace Hncore.Pass.Sells.Service
|
|
{
|
|
public class CouponUserOrginService : ServiceBase<CouponUserOrginEntity>, IFindService
|
|
{
|
|
CourseContext m_DbContext;
|
|
public CouponUserOrginService(CourseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
|
|
{
|
|
m_DbContext = dbContext;
|
|
}
|
|
}
|
|
}
|