コード例 #1
0
        public JsonResult selectCourseBtTime(string startdate, string enddate)
        {
            DateTime startDate = DateTime.ParseExact(startdate, "dd/MM/yyyy",
                                                     CultureInfo.InvariantCulture);
            DateTime endDate = DateTime.ParseExact(enddate, "dd/MM/yyyy",
                                                   CultureInfo.InvariantCulture);
            long id = 0;

            if (CurrentUser.CompanyID == -1)
            {
                id = -1;
            }
            else
            {
                id = CurrentUser.NameIdentifierInt64;
            }
            return(Json(_PersonBAL.GetCourseFromTimeSpanDALBAL(startDate, endDate, id), JsonRequestBehavior.AllowGet));
        }