Files
juipnet/Services/Hncore.Pass.Sells/Service/Coupon/CouponUserOrginService.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

22 lines
690 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;
}
}
}