예제 #1
0
        public List <Test> GetTests()
        {
            var tests = _testService.GetAll();

            if (tests.Count == 0)
            {
                DefaultModels.Create();
                return(_testService.GetAll());
            }
            else
            {
                return(tests);
            }
        }