RoutineUpdate

This commit is contained in:
yubaolee
2015-12-05 21:24:01 +08:00
parent af5e04d62f
commit 0e98a6e3c8
11 changed files with 341 additions and 277 deletions

View File

@@ -53,14 +53,15 @@ namespace OpenAuth.Mvc.Controllers
return JsonHelper.Instance.Serialize(_app.Load(orgId, pageCurrent, pageSize));
}
public string Delete(string Id)
public string Delete(int Id)
{
try
{
foreach (var obj in Id.Split(','))
{
_app.Delete(int.Parse(obj));
}
_app.Delete(Id);
//foreach (var obj in Id.Split(','))
//{
// _app.Delete(int.Parse(obj));
//}
}
catch (Exception e)
{