using Microsoft.AspNetCore.Mvc;
using Znyc.Recruitment.Admin.AspNetCore.Controllers;
using Znyc.Recruitment.Admin.Security.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
using Znyc.Recruitment.Admin.Security.IServices;
namespace Znyc.Recruitment.Admin.WebApi.Controllers
{
///
/// 云币服务
///
[ApiController]
[Route("api/Security/[controller]")]
public class
CurrencyController : AreaApiController
{
///
/// 构造函数
///
///
public CurrencyController(ICurrencyService _service) : base(_service)
{
_service = _service;
}
}
}