예제 #1
0
        public async Task <IActionResult> ViewAllEmp()
        {
            var data = await _empRepository.GetActiveEmps();

            return(View(data));
        }