Files
juipnet/Services/Hncore.Pass.Sells/Service/Coupon/CouponUserOrginService.cs

22 lines
690 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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;
}
}
}