示例#1
0
        //添加手术
        public ActionResult OpeAdd(string op_ID, string op_name, string op_dept, string op_patient, string date1, string date2)
        {
            OperationService operationService = new OperationService();
            string           date3            = date2.Replace("T", " ");
            string           date             = date3.Replace(".000Z", "");

            operationService.AddNew(op_ID, op_name, op_patient, op_dept, date);
            return(Json(true));
        }