Ejemplo n.º 1
0
        public string EditExperimentTime()
        {
            string id   = Request["id"];
            string week = Request["week"];
            string time = Request["time"];
            string max  = Request["max"];
            string json = new ExperimentTimeOperation().EditExperiment(id, week, time, max);

            return("{\"back\":\"" + json + "\"}");
        }
Ejemplo n.º 2
0
        public string DelExperiment(long id)
        {
            string json = new ExperimentTimeOperation().DelExperiment(id);

            return("{\"back\":\"" + json + "\"}");
        }