예제 #1
0
        public async Task <IActionResult> CountUser(int month)
        {
            int student = _repo.CountStudent(month);
            int teacher = _repo.CountTeacher(month);
            int admin   = _repo.CountTeacher(month);

            int[] a = new int[] { student, teacher, admin };


            return(Ok(a));
        }