Exemple #1
0
        public ActionResult GetList()
        {
            DemoleaveIBLL demoleaveIBLL = new DemoleaveBLL();
            var           data          = demoleaveIBLL.GetList();

            return(Success(data));
        }
Exemple #2
0
 public ActionResult SaveList(string jsondata)
 {
     if (!string.IsNullOrEmpty(jsondata))
     {
         DemoleaveIBLL demoleaveIBLL = new DemoleaveBLL();
         demoleaveIBLL.SaveList(jsondata);
     }
     return(Success("操作成功。"));
 }