コード例 #1
0
        public ActionResult OutputResult(Guid id, string receiverFio, DateTime receivedDate)
        {
            var okbRepo = new SafetyAssessmentRepository();

            okbRepo.SendOutputResult(id, receiverFio, receivedDate);
            return(Json("Ok!", JsonRequestBehavior.AllowGet));
        }
コード例 #2
0
        public ActionResult OutputResult(Guid id)
        {
            var okbRepo = new SafetyAssessmentRepository();

            okbRepo.SendOutputResult(id);
            return(Json("Ok!", JsonRequestBehavior.AllowGet));
        }