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

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;
}
}
}