DataKanban.aspx.cs
736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Quiz.Models;
using Quiz.BLL;
using Quiz.SiteBase;
using System.Web.Services;
namespace Quiz.WebsiteAnalysis
{
public partial class DataKanban : System.Web.UI.Page
{
// public DataKanbans reset = new DataKanbans();
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// 看板数据
/// </summary>
/// <returns></returns>
[WebMethod]
public static DataKanbans DataKanbanList()
{
return BLL.UserBll.getDataKanbanlist();
}
}
}