mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Infrastructure;
|
|
using OpenAuth.App;
|
|
using OpenAuth.Mvc.Models;
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
{
|
|
public class RelevanceManagerController : BaseController
|
|
{
|
|
private RevelanceManagerApp _app;
|
|
|
|
public RelevanceManagerController()
|
|
{
|
|
_app = AutofacExt.GetFromFac<RevelanceManagerApp>();
|
|
}
|
|
|
|
[HttpPost]
|
|
public string Assign(string type, Guid firstId, Guid[] secIds)
|
|
{
|
|
try
|
|
{
|
|
_app.Assign(type, firstId, secIds);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
BjuiResponse.statusCode = "300";
|
|
BjuiResponse.message = ex.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(BjuiResponse);
|
|
}
|
|
[HttpPost]
|
|
public string UnAssign(string type, Guid firstId, Guid[] secIds)
|
|
{
|
|
try
|
|
{
|
|
_app.UnAssign(type, firstId, secIds);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
BjuiResponse.statusCode = "300";
|
|
BjuiResponse.message = ex.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(BjuiResponse);
|
|
}
|
|
}
|
|
} |