Example #1
0
        public ActionResult GetSamples(int TestId)
        {
            var model = DbHelpers.GetTestById(TestId, true).Samples;

            return(View(new GridModel <Sample>(model)));
        }
Example #2
0
        public ActionResult TestDetails(String TestId)
        {
            var model = DbHelpers.GetTestById(Int32.Parse(TestId), true);

            return(View(model));
        }