You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
564 B

using System;
using System.Web.Mvc;
using System.Collections.Generic;
using Pingchuan.BeijingSafeguard.BLL;
using Pingchuan.BeijingSafeguard.Model;
namespace Pingchuan.BeijingSafeguard.App.Controllers
{
public class TaskController : BaseController
{
public ActionResult Index()
{
return View();
}
[HttpPost]
public JsonResult GetList(DateTime fromDate, DateTime toDate)
{
List<TaskDTO> tasks = TaskBLL.GetList(fromDate, toDate);
return Json(tasks);
}
}
}