示例#1
0
        public JsonResult GetMonthAttendance(string userid, int year, int month)
        {
            var bll  = new WorkmeetingBLL();
            var data = bll.GetMonthAttendance(userid, year, month);

            return(Json(data, JsonRequestBehavior.AllowGet));
        }