Пример #1
0
        public IActionResult Test()
        {
            var model = new TestMixedViewModel();

            model.Unions     = _test.Union();
            model.Intersects = _test.Intersect();
            model.Excepts    = _test.Except();
            model.Concats    = _test.Concat();
            model.Filter     = _test.Filter();


            return(View(model));
        }