mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-16 06:26:38 +08:00
21 lines
504 B
C#
21 lines
504 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.Application.Services;
|
|||
|
|
using Yi.Framework.Bbs.Domain.Managers;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Bbs.Application.Services.Integral
|
|||
|
|
{
|
|||
|
|
public class IntegralService:ApplicationService
|
|||
|
|
{
|
|||
|
|
private IntegralManager _integralManager;
|
|||
|
|
public IntegralService(IntegralManager integralManager)
|
|||
|
|
{
|
|||
|
|
_integralManager= integralManager;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|