ComplianceServer/oldcode/Core.Web/Controllers/SoftUserCountController.cs

18 lines
518 B
C#

using Core.Web.App_Start;
using Core.Web.WebHelper;
using CRM.Core.BLL.Application.Soft;
using System.Web.Mvc;
namespace Core.Web.Controllers
{
public class SoftUserCountController : BaseController
{
// GET: SoftUserCount
[AuthorizeRedirect(RightsConfig.CONST_软件用户数据统计, ToolBarConfig.CONST_NotButton, true)]
public ActionResult Index()
{
var model = new SoftUserService().GetSoftUserOrderCount();
return View(model);
}
}
}