Example #1
0
        public IActionResult GetAnotherCountryStudents()
        {
            StudentBL studentBL         = new StudentBL(_unitOfWork, _mapper);
            var       students          = studentBL.GetAnotherCountryStudents();
            var       studentsViewModel = this._mapper.Map <Filter, FilterViewModel>(students);

            return(View(studentsViewModel));
        }